Skip to content

Commit

Permalink
Merge pull request #31 from udohjeremiah/dev
Browse files Browse the repository at this point in the history
Add past question for WDU/EMT104
  • Loading branch information
udohjeremiah authored Jan 5, 2024
2 parents 09e4b9d + b8c7721 commit 9d0dab6
Show file tree
Hide file tree
Showing 7 changed files with 137 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ jobs:

- name: Build with Next.js
run: npm run build
env:
MONGODB_URI: ${{ secrets.MONGODB_URI }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
import Questions from "@/components/Questions";
import Answers from "@/components/Answers";

export default function EMT104() {
return (
<Questions
school="western delta university"
college="natural and applied sciences"
department="environmental management and toxicology"
session="2022/2023"
semester="second semester"
courseCode="EMT104"
courseTitle="Practical Biology II"
allowedTime="2hrs"
instruction="answer ALL questions"
>
<li>
<h4 className="mb-2 font-bold">Question 1</h4>
<ol className="flex list-[lower-alpha] flex-col gap-2">
<li>
Identify specimen A and B stating the phyla and class they belong to
and their habitat.
<Answers questionNumber="1a" />
</li>
<li>
Give two examples each of the classes Polychaeta and Hirudinea under
the phylum Anelida.
<Answers questionNumber="1b" />
</li>
</ol>
</li>

<li>
<h4 className="mb-2 font-bold">Question 2</h4>
<ol className="flex list-[lower-alpha] flex-col gap-2">
<li>
Identify and classify any member of the phyla Platyhelminthes and
Nematoda to class level.
<Answers questionNumber="2a" />
</li>
<li>
Differentiate between the phyla Platyhelminthes and Nematoda.
<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>
Identify specimens C and D stating the phyla they belong and their
habitat.
<Answers questionNumber="3a" />
</li>
<li>
Draw any member of the phylum Echinodermata.
<Answers questionNumber="3b" />
</li>
</ol>
</li>

<li>
<h4 className="mb-2 font-bold">Question 4</h4>
<div>
Write short notes on the following:
<ol className="mx-4 list-[lower-roman]">
<li>Diploblastic</li>
<li>Ectothermic organisms</li>
<li>Endothermic organisms</li>
<li>Amiotic</li>
<li>Heterotrophic organisms</li>
</ol>
<Answers questionNumber="4" />
</div>
</li>

<li>
<h4 className="mb-2 font-bold">Question 5</h4>
<ol className="flex list-[lower-alpha] flex-col gap-2">
<li>
List five general characteristics of the kingdom Animalia.
<Answers questionNumber="5a" />
</li>
<li>
List the classes under the phyla Porifera and Coelentrata.
<Answers questionNumber="5b" />
</li>
</ol>
</li>
</Questions>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import LinkList from "@/components/LinkList";

const courses = {
"": [
{
name: "EMT 104 - Practical Biology II",
route: "2nd-semester/emt104",
},
],
};

export default function _2nd_semester() {
return <LinkList items={courses} isOrdered={true} />;
}
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/emt/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/emt/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: "emt/2022_2023" }],
};

export default function EMT() {
return <LinkList items={sessions} isOrdered={true} />;
}
1 change: 1 addition & 0 deletions src/app/past-questions-archive/wdu/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import LinkList from "@/components/LinkList";
const departments = {
b: [{ name: "Basic And Industrial Chemistry", route: "wdu/basicinduschem" }],
c: [{ name: "Computer Science", route: "wdu/compsci" }],
c: [{ name: "Environmental Management And Toxicology", route: "wdu/emt" }],
g: [{ name: "General Studies", route: "wdu/gst" }],
m: [
{ name: "Management Sciences", route: "wdu/mgmsci" },
Expand Down

0 comments on commit 9d0dab6

Please sign in to comment.