Public Safety in 911 era

Students will present a paper that is a review of the attached article, Homeland Security and Public Policing. The intent of the paper is to deepen student knowledge and perspective of changes in society in a Post 911 era where the private sector, municipalities and government agencies collaborate to secure society and their economies from domestic and international threats. Students will discuss in their paper the nature of terrorism, key principles of community policing and the purpose and necessity for the partnership of local community policing and federal agencies. The conclusion of week 3 paper should clearly articulate the risk of the absence of sound and proactive security measures, and conversely, the dangers of a looming police state evolved through fear and anxiety.

Nampak Story

Thoroughly read the Nampak Story,  Exercise 5.1 on page 161 and fully answer the questions.

1. Which dimensions of the 7-S framework did Eric Collins and his senior management colleagues focus on in order to change Nampak’s culture? Reminder: The “hard” dimensions are strategy, structure, and systems.  The “soft” dimensions include staff, skills, and shared values, or superordinate goals.
2. Which dimensions of the 7-S framework were not affected?
3. Where does culture change initiative belong on the depth scale, between shallow and deep change? In your judgement, would a different emphasis across the seven factors of that framework have produced deeper change, with better results, and how?

Your report for solving the case must include the following headings:
OverviewSummarizing the case scenario and identifying all the problems, issues, constraints, related to the case.
Discussion QuestionsAnswering all the questions.
DebriefingReflecting your thoughts, opinions, and solutions based on the case.

Written assignments must adhere to APA style guidelines.

The Political Thoughts of Frederick Douglas

ANNOTATED BIBLIOGRAPHY  1-2 pages
Provide an annotated bibliography for your final research paper. The annotated bibliography should include at least 5-8 scholarly sources (books or academic articles), of which no less than 3 should be relevant primary sources. Note: primary sources are not held to the same academic standards as secondary sources since things like peer review are relatively recent innovations.
Each annotation should:
-Summarize the argument of the source you’ve chosen.
-Explain how the source fits into your broader argument/supports your research on the topic in question.
A good annotation can do all of this in two concise but thorough sentences. You can write longer annotations if necessary but aim for thorough and concise in any case.

RESEARCH PAPER
TOPIC: The Political Thought of Fredrick Douglas
Focus on:
his view of government,
his views on the constitution
his thoughts on achieving racial equality

Write a research paper (10-13 pages) on a topic relevant to American Political Thought (see the topic guidelines in week 2). Paper guidelines are as follows:
-Outside scholarly research is expected; the requirements for the annotated bibliography are the minimum expected.
-All citations are to be in proper APA format.
-A logical outline for the paper would be: introduce the topic; explain historical and philosophical context; present your hypothesis; supporting evidence; counter-arguments; rebuttal to counter-arguments (why you’re right and they’re wrong); concluding remarks on the impact of your topic on American politics.
-Don’t try picking a position on a topic you think the professor will support: a well-argued paper with which I disagree will get a higher grade than a paper with which I agree that makes flawed arguments. That said, you are free to try and make a normative, persuasive case.
-Substantive engagement with a Judeo-Christian world view, in keeping with the faith statement and mission of This University, is highly desired. Even if you do not share the institution’s particular world view, your paper will be strengthened if you engage it in a substantive manner.

Primary sources Important Source:
Books
    Narrative of the Life of Frederick Douglass
    My Bondage and My Freedom
    The narrative in the Life of an American Slave/Incidents of a Slave Girl
    Life and Times of Frederick Douglass: His Early Life as a Slave, His Escape From Bondage and His Complete Life Story
    Three Negro Classics

Dictionaries (Symbol Table)

You will implement a Symbol Table using dictionary in this assignment.

https://github.com/edogdu/intro_to_python/blob/master/asg7_dictionary_symbol_table.ipynb

Your program should produce an output exactly like this:

> x = 1
> y = 2
> z = 3
> x
1
> list
x = 1
y = 2
z = 3
> y
2
> pi = 3.14
> list
x = 1
y = 2
z = 3
pi = 3.14
> t
No such symbol
> x =
Error
> x = 7
> list
x = 7
y = 2
z = 3
pi = 3.14
> quit

This is an assignment for a beginner level python course, so no complicated or expert level looking code. I just need the code you used to solve this.