Skip to content

Commit

Permalink
Merge pull request #46 from udohjeremiah/dev
Browse files Browse the repository at this point in the history
Add past exam question for WDU/POL102
  • Loading branch information
udohjeremiah authored Jan 12, 2024
2 parents 294fa3b + 7441a49 commit d4b2e82
Show file tree
Hide file tree
Showing 7 changed files with 135 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default function ECO101() {

<li>
<h4 className="mb-2 font-bold">Question 6</h4>
<ol className="flex list-[lower-roman] flex-col gap-2">
<ol className="flex list-[lower-alpha] flex-col gap-2">
<li>
Explain the various forms of money you know
<Answers questionNumber="6a" />
Expand Down
5 changes: 4 additions & 1 deletion src/app/past-questions-archive/wdu/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ const departments = {
{ name: "Management Sciences", route: "wdu/mgmsci" },
{ name: "Mathematics (Pure and Applied)", route: "wdu/mth" },
],
p: [{ name: "Physics With Electronics", route: "wdu/phywithelect" }],
p: [
{ name: "Political Science", route: "wdu/pol" },
{ name: "Physics With Electronics", route: "wdu/phywithelect" },
],
};

export default function WesternDeltaUniversity() {
Expand Down
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} />;
}
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>
);
}
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} />;
}
9 changes: 9 additions & 0 deletions src/app/past-questions-archive/wdu/pol/2022_2023/page.jsx
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} />;
}
9 changes: 9 additions & 0 deletions src/app/past-questions-archive/wdu/pol/page.jsx
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} />;
}

0 comments on commit d4b2e82

Please sign in to comment.