-
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 #31 from udohjeremiah/dev
Add past question for WDU/EMT104
- Loading branch information
Showing
7 changed files
with
137 additions
and
0 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 |
---|---|---|
|
@@ -55,3 +55,5 @@ jobs: | |
|
||
- name: Build with Next.js | ||
run: npm run build | ||
env: | ||
MONGODB_URI: ${{ secrets.MONGODB_URI }} |
93 changes: 93 additions & 0 deletions
93
src/app/past-questions-archive/wdu/emt/2022_2023/100-level/2nd-semester/emt104/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,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> | ||
); | ||
} |
14 changes: 14 additions & 0 deletions
14
src/app/past-questions-archive/wdu/emt/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: "EMT 104 - Practical Biology II", | ||
route: "2nd-semester/emt104", | ||
}, | ||
], | ||
}; | ||
|
||
export default function _2nd_semester() { | ||
return <LinkList items={courses} isOrdered={true} />; | ||
} |
9 changes: 9 additions & 0 deletions
9
src/app/past-questions-archive/wdu/emt/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: "emt/2022_2023" }], | ||
}; | ||
|
||
export default function EMT() { | ||
return <LinkList items={sessions} 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