-
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/BFN102
- Loading branch information
1 parent
d4b2e82
commit 46c3a6f
Showing
6 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
134 changes: 134 additions & 0 deletions
134
src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/bfn102/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,134 @@ | ||
import Questions from "@/components/Questions"; | ||
import Answers from "@/components/Answers"; | ||
|
||
export default function BFN102() { | ||
return ( | ||
<Questions | ||
school="western delta university" | ||
college="social and management sciences" | ||
department="accounting and finance" | ||
session="2022/2023" | ||
semester="second semester" | ||
courseCode="BFN102" | ||
courseTitle="element of banking II" | ||
allowedTime="2hrs" | ||
instruction="attempt all questions in section A and any FIVE from section B" | ||
> | ||
<li> | ||
<h4 className="mb-2 font-bold">Section A: Multiple Choice Questions</h4> | ||
<ol className="flex list-decimal flex-col gap-2"> | ||
<li> | ||
This is the practice of commercial banks to extend _______ | ||
facilities to desired customers (a) advance (b) credits (c) money | ||
(d) borrowing | ||
<Answers questionNumber="sectionA-1" /> | ||
</li> | ||
<li> | ||
The main function of bank manager does not include one of the | ||
following? (a) risk management (b) financing decision (c) dividend | ||
decision (d) credit finance | ||
<Answers questionNumber="sectionA-2" /> | ||
</li> | ||
<li> | ||
_______ means more than two bank to come together to finance a | ||
project (a) sendication finance (b) double finance (c) long finance | ||
(d) credit finance | ||
<Answers questionNumber="sectionA-3" /> | ||
</li> | ||
<li> | ||
_______ is part of payment system instrument except (a) ATM (b) POS | ||
(c) note and coins (d) teller | ||
<Answers questionNumber="sectionA-4" /> | ||
</li> | ||
<li> | ||
Central Bank of Nigeria (CBN) was established under the Central Bank | ||
Act 1958 and commenced operations in _______ (a) 1958 (b) 1957 (c) | ||
1956 (d) 1959 | ||
<Answers questionNumber="sectionA-5" /> | ||
</li> | ||
<li> | ||
One of the following is NOT financial intermediation process a key | ||
to financial institution. (a) merchant bank (b) debenture (c) | ||
mortgage (d) block | ||
<Answers questionNumber="sectionA-6" /> | ||
</li> | ||
<li> | ||
One of the following is NOT short term sources of Finance (a) trade | ||
credit (b) hire - purchase (c) seed money (d) loan | ||
<Answers questionNumber="sectionA-7" /> | ||
</li> | ||
<li> | ||
Which of the following is NOT a long term sources of fund? (a) stock | ||
(b) equity share (c) loan (d) money | ||
<Answers questionNumber="sectionA-8" /> | ||
</li> | ||
<li> | ||
One of the following is not a commercial bank in Nigeria (a) first | ||
bank (b) fidelity bank (c) money bank (d) wema | ||
<Answers questionNumber="sectionA-9" /> | ||
</li> | ||
<li> | ||
The commencement of insurance business in Nigeria dates back to | ||
_______ (a) 1921 (b) 1935 (c) 1928 (d) 1955 | ||
<Answers questionNumber="sectionA-10" /> | ||
</li> | ||
</ol> | ||
<strong class="whitespace-nowrap">(2 marks each) (20 marks)</strong> | ||
</li> | ||
|
||
<li> | ||
<h4 className="mb-2 font-bold"> | ||
Section B: Answer Any FIVE Questions Only | ||
</h4> | ||
<ol className="flex list-decimal flex-col gap-2"> | ||
<li> | ||
Explain five policy objectives and goals of microfinance banking{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-1" /> | ||
</li> | ||
<li> | ||
Highlight the recet measures taken in improving payment system{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-2" /> | ||
</li> | ||
<li> | ||
What is insurance? List six types of insurance{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-3" /> | ||
</li> | ||
<li> | ||
Explain the process of analyzing a commercial risk{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-4" /> | ||
</li> | ||
<li> | ||
Differentiate between Money Market and Capital Market{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-5" /> | ||
</li> | ||
<li> | ||
What are the problems of payment system in Nigeria{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-6" /> | ||
</li> | ||
<li> | ||
List and explain five suitability for banking lending{" "} | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-7" /> | ||
</li> | ||
<li> | ||
Write short notes on the following: | ||
<ol className="mx-4 list-[lower-roman]"> | ||
<li>Discount house</li> | ||
<li>Commercial papers</li> | ||
<li>Treasury bill</li> | ||
<li>Banker acceptance</li> | ||
</ol> | ||
<strong class="whitespace-nowrap">(10 marks)</strong> | ||
<Answers questionNumber="sectionB-8" /> | ||
</li> | ||
</ol> | ||
</li> | ||
</Questions> | ||
); | ||
} |
14 changes: 14 additions & 0 deletions
14
src/app/past-questions-archive/wdu/acc/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: "BFN 102 - Element of Banking II", | ||
route: "2nd-semester/bfn102", | ||
}, | ||
], | ||
}; | ||
|
||
export default function _2nd_semester() { | ||
return <LinkList items={courses} isOrdered={true} />; | ||
} |
9 changes: 9 additions & 0 deletions
9
src/app/past-questions-archive/wdu/acc/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: "acc/2022_2023" }], | ||
}; | ||
|
||
export default function Acc() { | ||
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