-
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.
Add past exam question for WDU/POL102
- Loading branch information
1 parent
294fa3b
commit 7441a49
Showing
7 changed files
with
135 additions
and
2 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
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
14 changes: 14 additions & 0 deletions
14
src/app/past-questions-archive/wdu/pol/2022_2023/100-level/2nd-semester/page.jsx
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,14 @@ | ||
import LinkList from "@/components/LinkList"; | ||
|
||
const courses = { | ||
"": [ | ||
{ | ||
name: "POL 102 - Forms and Organs of Government", | ||
route: "2nd-semester/pol102", | ||
}, | ||
], | ||
}; | ||
|
||
export default function _2nd_semester() { | ||
return <LinkList items={courses} isOrdered={true} />; | ||
} |
89 changes: 89 additions & 0 deletions
89
src/app/past-questions-archive/wdu/pol/2022_2023/100-level/2nd-semester/pol102/page.jsx
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,89 @@ | ||
import Questions from "@/components/Questions"; | ||
import Answers from "@/components/Answers"; | ||
|
||
export default function ECO101() { | ||
return ( | ||
<Questions | ||
school="western delta university" | ||
college="social and management sciences" | ||
department="Political Science" | ||
session="2022/2023" | ||
semester="second semester" | ||
courseCode="POL102" | ||
courseTitle="Forms and Organs of Government" | ||
allowedTime="2hrs" | ||
instruction="All unused scripts must be canceled. Failure to do so will result in a penalty of deducting five marks." | ||
> | ||
<li> | ||
<h4 className="mb-2 font-bold">Question 1</h4> | ||
What do you understand by Dictatorship? How is it different from | ||
fascism? | ||
<Answers questionNumber="1" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 2</h4> | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
What do you understand by constitutional convention? | ||
<Answers questionNumber="2a" /> | ||
</li> | ||
<li> | ||
Why is change in constitution difficult? | ||
<Answers questionNumber="2b" /> | ||
</li> | ||
</ol> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 3</h4> | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
What do you understand by separation of powers? | ||
<Answers questionNumber="3a" /> | ||
</li> | ||
<li> | ||
To what extent is there separation of power in the British | ||
constitution? | ||
<Answers questionNumber="3b" /> | ||
</li> | ||
</ol> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 4</h4> | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
Discuss the different types of legislature you have studied | ||
<Answers questionNumber="4a" /> | ||
</li> | ||
<li> | ||
What are the advantages? | ||
<Answers questionNumber="4b" /> | ||
</li> | ||
</ol> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 5</h4> | ||
Identify and discuss the major features of any federal state within a | ||
political system | ||
<Answers questionNumber="5" /> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold">Question 6</h4> | ||
<ol className="flex list-[lower-alpha] flex-col gap-2"> | ||
<li> | ||
Explain a unitary system of government as a political concept | ||
<Answers questionNumber="6a" /> | ||
</li> | ||
<li> | ||
Highlight the features of a unitary system of government | ||
<Answers questionNumber="6b" /> | ||
</li> | ||
</ol> | ||
</li> | ||
</Questions> | ||
); | ||
} |
9 changes: 9 additions & 0 deletions
9
src/app/past-questions-archive/wdu/pol/2022_2023/100-level/page.jsx
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,9 @@ | ||
import LinkList from "@/components/LinkList"; | ||
|
||
const semesters = { | ||
"": [{ name: "2nd Semester", route: "100-level/2nd-semester" }], | ||
}; | ||
|
||
export default function _100_level() { | ||
return <LinkList items={semesters} isOrdered={true} />; | ||
} |
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,9 @@ | ||
import LinkList from "@/components/LinkList"; | ||
|
||
const levels = { | ||
"": [{ name: "100 Level", route: "2022_2023/100-level" }], | ||
}; | ||
|
||
export default function _2022_2023() { | ||
return <LinkList items={levels} isOrdered={true} />; | ||
} |
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,9 @@ | ||
import LinkList from "@/components/LinkList"; | ||
|
||
const sessions = { | ||
"": [{ name: "2022/2023", route: "pol/2022_2023" }], | ||
}; | ||
|
||
export default function Pol() { | ||
return <LinkList items={sessions} isOrdered={true} />; | ||
} |