From 46c3a6f2d59fd244b60be4a08ff4e2d809ea5987 Mon Sep 17 00:00:00 2001 From: Udoh Jeremiah Date: Sat, 13 Jan 2024 09:40:55 +0100 Subject: [PATCH] Add past exam question for WDU/BFN102 --- .../100-level/2nd-semester/bfn102/page.jsx | 134 ++++++++++++++++++ .../2022_2023/100-level/2nd-semester/page.jsx | 14 ++ .../wdu/acc/2022_2023/100-level/page.jsx | 9 ++ .../wdu/acc/2022_2023/page.jsx | 9 ++ .../past-questions-archive/wdu/acc/page.jsx | 9 ++ src/app/past-questions-archive/wdu/page.jsx | 1 + 6 files changed, 176 insertions(+) create mode 100644 src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/bfn102/page.jsx create mode 100644 src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/page.jsx create mode 100644 src/app/past-questions-archive/wdu/acc/2022_2023/100-level/page.jsx create mode 100644 src/app/past-questions-archive/wdu/acc/2022_2023/page.jsx create mode 100644 src/app/past-questions-archive/wdu/acc/page.jsx diff --git a/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/bfn102/page.jsx b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/bfn102/page.jsx new file mode 100644 index 0000000..a290f80 --- /dev/null +++ b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/bfn102/page.jsx @@ -0,0 +1,134 @@ +import Questions from "@/components/Questions"; +import Answers from "@/components/Answers"; + +export default function BFN102() { + return ( + +
  • +

    Section A: Multiple Choice Questions

    +
      +
    1. + This is the practice of commercial banks to extend _______ + facilities to desired customers (a) advance (b) credits (c) money + (d) borrowing + +
    2. +
    3. + 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 + +
    4. +
    5. + _______ means more than two bank to come together to finance a + project (a) sendication finance (b) double finance (c) long finance + (d) credit finance + +
    6. +
    7. + _______ is part of payment system instrument except (a) ATM (b) POS + (c) note and coins (d) teller + +
    8. +
    9. + 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 + +
    10. +
    11. + One of the following is NOT financial intermediation process a key + to financial institution. (a) merchant bank (b) debenture (c) + mortgage (d) block + +
    12. +
    13. + One of the following is NOT short term sources of Finance (a) trade + credit (b) hire - purchase (c) seed money (d) loan + +
    14. +
    15. + Which of the following is NOT a long term sources of fund? (a) stock + (b) equity share (c) loan (d) money + +
    16. +
    17. + One of the following is not a commercial bank in Nigeria (a) first + bank (b) fidelity bank (c) money bank (d) wema + +
    18. +
    19. + The commencement of insurance business in Nigeria dates back to + _______ (a) 1921 (b) 1935 (c) 1928 (d) 1955 + +
    20. +
    + (2 marks each) (20 marks) +
  • + +
  • +

    + Section B: Answer Any FIVE Questions Only +

    +
      +
    1. + Explain five policy objectives and goals of microfinance banking{" "} + (10 marks) + +
    2. +
    3. + Highlight the recet measures taken in improving payment system{" "} + (10 marks) + +
    4. +
    5. + What is insurance? List six types of insurance{" "} + (10 marks) + +
    6. +
    7. + Explain the process of analyzing a commercial risk{" "} + (10 marks) + +
    8. +
    9. + Differentiate between Money Market and Capital Market{" "} + (10 marks) + +
    10. +
    11. + What are the problems of payment system in Nigeria{" "} + (10 marks) + +
    12. +
    13. + List and explain five suitability for banking lending{" "} + (10 marks) + +
    14. +
    15. + Write short notes on the following: +
        +
      1. Discount house
      2. +
      3. Commercial papers
      4. +
      5. Treasury bill
      6. +
      7. Banker acceptance
      8. +
      + (10 marks) + +
    16. +
    +
  • +
    + ); +} diff --git a/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/page.jsx b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/page.jsx new file mode 100644 index 0000000..bfbf2d4 --- /dev/null +++ b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/2nd-semester/page.jsx @@ -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 ; +} diff --git a/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/page.jsx b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/page.jsx new file mode 100644 index 0000000..e9af727 --- /dev/null +++ b/src/app/past-questions-archive/wdu/acc/2022_2023/100-level/page.jsx @@ -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 ; +} diff --git a/src/app/past-questions-archive/wdu/acc/2022_2023/page.jsx b/src/app/past-questions-archive/wdu/acc/2022_2023/page.jsx new file mode 100644 index 0000000..5a0f76c --- /dev/null +++ b/src/app/past-questions-archive/wdu/acc/2022_2023/page.jsx @@ -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 ; +} diff --git a/src/app/past-questions-archive/wdu/acc/page.jsx b/src/app/past-questions-archive/wdu/acc/page.jsx new file mode 100644 index 0000000..609d9f3 --- /dev/null +++ b/src/app/past-questions-archive/wdu/acc/page.jsx @@ -0,0 +1,9 @@ +import LinkList from "@/components/LinkList"; + +const sessions = { + "": [{ name: "2022/2023", route: "acc/2022_2023" }], +}; + +export default function Acc() { + return ; +} diff --git a/src/app/past-questions-archive/wdu/page.jsx b/src/app/past-questions-archive/wdu/page.jsx index 4aaa9c1..ed169ed 100644 --- a/src/app/past-questions-archive/wdu/page.jsx +++ b/src/app/past-questions-archive/wdu/page.jsx @@ -2,6 +2,7 @@ import LinkList from "@/components/LinkList"; // source from https://wdu.edu.ng/academics/academic-programmes/ const departments = { + a: [{ name: "Accounting And Finance", route: "wdu/acc" }], b: [{ name: "Basic And Industrial Chemistry", route: "wdu/basicinduschem" }], c: [{ name: "Computer Science", route: "wdu/compsci" }], e: [