-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from udohjeremiah/dev
Add 2 new past questions.
- Loading branch information
Showing
4 changed files
with
189 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
import Questions from "@/components/Questions"; | ||
import Answers from "@/components/Answers"; | ||
|
||
export default function POL209() { | ||
return ( | ||
<Questions | ||
school="western delta university" | ||
college="social and management sciences" | ||
department="Political Science" | ||
session="2022/2023" | ||
semester="first semester" | ||
courseCode="POL209" | ||
courseTitle="Comparative Political Science" | ||
allowedTime="2hrs" | ||
instruction="Attempt any four (4) questions. Questions number 1-6 carries 17.5 marks each. Present all your points in a coherent and orderly manner." | ||
> | ||
<li> | ||
<h4 className="mb-2 font-bold">Question 1</h4> | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
Define Comparative Politics? | ||
<Answers questionNumber="1a" /> | ||
</li> | ||
<li> | ||
Identify the eras or epochs in the evolution of Comparative Politics | ||
and write short note on each of the phases. | ||
<Answers questionNumber="1b" /> | ||
</li> | ||
</ol> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 2</h4> | ||
Identify and elaborate the basic approaches to the study of Comparative | ||
Politics. | ||
<Answers questionNumber="2" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 3</h4> | ||
Explain the rational for the study of Comparative Politics and explain | ||
the different strategies adopted in comparative study. | ||
<Answers questionNumber="3" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 4</h4> | ||
Explain the central objectives and advantages of Comparative Politics as | ||
a sub-field of politial science. | ||
<Answers questionNumber="4" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 5</h4> | ||
Identify the main focus on Comparative Politics from the stand point of | ||
the functions of government. | ||
<Answers questionNumber="5" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 6</h4> | ||
Write short notes on any three (3) of the following: | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
Concepts | ||
<Answers questionNumber="6a" /> | ||
</li> | ||
<li> | ||
Models | ||
<Answers questionNumber="6b" /> | ||
</li> | ||
<li> | ||
Theories | ||
<Answers questionNumber="6c" /> | ||
</li> | ||
<li> | ||
Classification | ||
<Answers questionNumber="6d" /> | ||
</li> | ||
<li> | ||
Case study | ||
<Answers questionNumber="6e" /> | ||
</li> | ||
</ol> | ||
</li> | ||
</Questions> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import Questions from "@/components/Questions"; | ||
import Answers from "@/components/Answers"; | ||
|
||
export default function POL311() { | ||
return ( | ||
<Questions | ||
school="western delta university" | ||
college="social and management sciences" | ||
department="Political Science" | ||
session="2023/2024" | ||
semester="first semester" | ||
courseCode="POL311" | ||
courseTitle="Theory and Practice of Administration" | ||
allowedTime="2hrs" | ||
instruction="Answer four (4) questions" | ||
> | ||
<li> | ||
<h4 className="mb-2 font-bold">Question 1</h4> | ||
Examine the development of early management and Administration thought | ||
during the pre-industrial Revolution to industrial Revolution. | ||
<Answers questionNumber="1" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 2</h4> | ||
Discuss the system theory using the aid of a diagram as enunciated by | ||
David Easton. | ||
<Answers questionNumber="2" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 3</h4> | ||
Examine Adam Smith observation about the importance of division of | ||
labour to higher productivity. | ||
<Answers questionNumber="3" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 4</h4> | ||
Discuss the difference and familiarities in Public Administration and | ||
Private Administration. | ||
<Answers questionNumber="4" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 5</h4> | ||
List and discuss Maslow's needs hierarchy framework. | ||
<Answers questionNumber="5" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 6</h4> | ||
Write short notes on the following: | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
Structural — functional analysis by Talcott Parson | ||
<Answers questionNumber="6a" /> | ||
</li> | ||
<li> | ||
Public choice theory | ||
<Answers questionNumber="6b" /> | ||
</li> | ||
<li> | ||
Max Weber's Typology of Authority. | ||
<Answers questionNumber="6c" /> | ||
</li> | ||
</ol> | ||
</li> | ||
</Questions> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters