Booking

Real

Course Selection System

Course Finder

Available Courses

Select Code Name Units Course Fee Exam Fee Total
Additional Fees/Carry-Overs Fee Exam Fee Total
* are compulsory
cardlogos

Streamlined Online Registration for Every Family

Easily complete your school registration with step-by-step guidance designed to make booking a breeze. Choose your preferred time slot and options with confidence for a hassle-free experience

    Course Selection System

    Course Finder





    Available Courses

    Course Code

    Course Name

    Fee ($)

    ${course.code}

    ${course.name}

    ${course.fee}

    `;
    tableBody.appendChild(row);
    });
    document.getElementById("results").style.display = 'block';
    } else {
    alert("No courses found for the selected criteria!");
    }
    }

      [text name="Phone Number"]

      head


      name="viewport" content="width=device-width, initial-scale=1.0"> Course Selection System

      Course Finder





      Available Courses

      Select

      Code

      Name

      Units

      Course Fee

      Exam Fee

      Total

      Additional Fees/Carry-Overs

      Fee

      Exam Fee

      Total

      $${row.course_fee + row.exam_fee}

      `;
      customRowsContainer.appendChild(rowElement);
      });
      }

      function updateCustomRow(index, field, value) {
      if (field === 'course_fee' || field === 'exam_fee') {
      value = parseFloat(value) || 0;
      }
      customRows[index][field] = value;
      updateTotals();
      }

      // Update Programs based on Faculty
      function updatePrograms() {
      const faculty = document.getElementById("faculty").value;
      const programSelect = document.getElementById("program");

      // Reset dependent fields
      programSelect.innerHTML = '';
      document.getElementById("level-group").style.display = 'none';
      document.getElementById("semester-group").style.display = 'none';
      document.getElementById("results").style.display = 'none';
      document.getElementById("find-btn").disabled = true;

      if (faculty) {
      document.getElementById("program-group").style.display = 'block';
      programData[faculty].forEach(program => {
      const option = document.createElement("option");
      option.value = program.toLowerCase().replace(/ /g, "_");
      option.textContent = program;
      programSelect.appendChild(option);
      });
      }
      }

      // Update Levels based on Program
      function updateLevels() {
      const programSelect = document.getElementById("program");
      const program = programSelect.options[programSelect.selectedIndex].text;
      const levelSelect = document.getElementById("level");

      // Reset dependent fields
      levelSelect.innerHTML = '';
      document.getElementById("semester-group").style.display = 'none';
      document.getElementById("results").style.display = 'none';
      document.getElementById("find-btn").disabled = true;

      if (program && levelData[program]) {
      document.getElementById("level-group").style.display = 'block';
      levelData[program].forEach(level => {
      const option = document.createElement("option");
      option.value = level;
      option.textContent = `${level} Level`;
      levelSelect.appendChild(option);
      });
      }
      }

      // Update Semesters based on Level
      function updateSemesters() {
      const level = document.getElementById("level").value;
      const semesterSelect = document.getElementById("semester");

      // Reset dependent fields
      semesterSelect.innerHTML = '';
      document.getElementById("results").style.display = 'none';
      document.getElementById("find-btn").disabled = true;

      if (level && semesterData[level]) {
      document.getElementById("semester-group").style.display = 'block';
      semesterData[level].forEach(semester => {
      const option = document.createElement("option");
      option.value = semester;
      option.textContent = semester.charAt(0).toUpperCase() + semester.slice(1).replace("_", " ");
      semesterSelect.appendChild(option);
      });
      }
      }

      function enableFindButton() {
      document.getElementById("find-btn").disabled = false;
      }

      // Course finding and display
      function findCourses() {
      const faculty = document.getElementById("faculty").value;
      const program = document.getElementById("program").options[document.getElementById("program").selectedIndex].text;
      const level = document.getElementById("level").value;
      const semester = document.getElementById("semester").value;

      filteredCourses = courses.filter(course =>
      course.faculty === faculty &&
      course.program === program &&
      course.level === level &&
      course.semester === semester
      );

      currentPage = 1;
      totalPages = Math.ceil(filteredCourses.length / coursesPerPage);
      selectedCourses = filteredCourses.map(course => ({...course, selected: true}));

      displayCourses();
      document.getElementById("results").style.display = "block";
      initializeCustomRows();
      }

      function displayCourses() {
      const start = (currentPage - 1) * coursesPerPage;
      const end = start + coursesPerPage;
      const paginatedCourses = selectedCourses.slice(start, end);

      const tableBody = document.getElementById("course-rows");
      tableBody.innerHTML = "";

      paginatedCourses.forEach((course, index) => {
      const actualIndex = start + index;
      const totalPerCourse = course.course_fee + course.exam_fee;
      tableBody.innerHTML += `

      ${course.code}

      ${course.name}

      ${course.units}

      $${course.course_fee}

      $${course.exam_fee}

      $${totalPerCourse}

      `;
      });

      updateTotals();

      // Update page info
      document.getElementById("page-info").textContent =
      `Page ${currentPage} of ${totalPages} | ${filteredCourses.length} courses found`;

      // Update button states
      document.getElementById("prev-btn").disabled = currentPage === 1;
      document.getElementById("next-btn").disabled = currentPage === totalPages;
      }

      function toggleCourseSelection(index) {
      selectedCourses[index].selected = !selectedCourses[index].selected;
      updateTotals();
      }

      function updateTotals() {
      const selected = selectedCourses.filter(course => course.selected);

      // Calculate totals for selected courses only
      const totalCourseFee = selected.reduce((sum, course) => sum + course.course_fee, 0);
      const totalExamFee = selected.reduce((sum, course) => sum + course.exam_fee, 0);

      // Calculate custom row totals
      const totalCustomFee = customRows.reduce((sum, row) => sum + (parseFloat(row.course_fee) || 0), 0);
      const totalCustomExamFee = customRows.reduce((sum, row) => sum + (parseFloat(row.exam_fee) || 0), 0);

      const grandTotal = totalCourseFee + totalExamFee + totalCustomFee + totalCustomExamFee;
      const totalUnits = selected.reduce((sum, course) => sum + course.units, 0);

      // Calculate original totals for comparison
      const originalCourseFee = filteredCourses.reduce((sum, course) => sum + course.course_fee, 0);
      const originalExamFee = filteredCourses.reduce((sum, course) => sum + course.exam_fee, 0);
      const originalTotal = originalCourseFee + originalExamFee;

      // Update summary
      document.getElementById("total-course-fee").innerHTML =
      `Total Course Fees: $${totalCourseFee} (original: $${originalCourseFee})`;
      document.getElementById("total-exam-fee").innerHTML =
      `Total Exam Fees: $${totalExamFee} (original: $${originalExamFee})`;
      document.getElementById("total-custom-fee").textContent =
      `Additional Fees: $${totalCustomFee}`;
      document.getElementById("total-custom-exam-fee").textContent =
      `Additional Exam Fees: $${totalCustomExamFee}`;
      document.getElementById("grand-total").innerHTML =
      `Grand Total: $${grandTotal}(original: $${originalTotal})`;
      document.getElementById("selected-total").textContent =
      `Selected: ${selected.length} of ${filteredCourses.length} courses (${totalUnits} units)`;

      // Update custom row totals
      const customRowElements = document.querySelectorAll("#custom-rows tr");
      customRows.forEach((row, index) => {
      if (customRowElements[index]) {
      const totalCell = customRowElements[index].cells[6];
      if (totalCell) {
      totalCell.textContent = `$${(parseFloat(row.course_fee) || 0) + (parseFloat(row.exam_fee) || 0)}`;
      }
      }
      });
      }

      function prevPage() {
      if (currentPage > 1) {
      currentPage--;
      displayCourses();
      }
      }

      function nextPage() {
      if (currentPage < totalPages) {
      currentPage++;
      displayCourses();
      }
      }

      // Initialize custom rows when page loads
      window.onload = initializeCustomRows;

      LIST OF ACCREDITED COURSES IN NOUN
      UNDERGRADUATE PROGRAMMES

      FACULTY OF AGRICULTURE:
      B. Agric Agricultural Economics and Agro-Business
      B. Agric Agricultural Extension and Rural Development
      B. Agric Animal Science
      B. Agric Crop Science
      B. Agric Soil and Land Resources Management

      FACULTY OF ART:
      B.A Arabic
      B.A Christian Theology
      B.A English
      B.A French
      B.A Hausa
      B.A Igbo
      B.A Islamic Studies
      B.A Philosophy
      B.A Yoruba

      FACULTY OF HEALTH SCIENCE:
      B.NSc. Nursing Science
      B.Sc. Environmental Health Science
      B.Sc. Public Health

      FACULTY OF EDUCATION:
      B.A(ED) Early Childhood Education
      B.A(ED) English
      B.A(ED) French
      B.A(ED) Primary Education
      B.LIS Library and Information Science
      B.Sc.(ED) Agricultural Sciences
      B.Sc.(ED) Biology
      B.Sc.(ED) Business Education
      B.Sc.(ED) Chemistry
      B.Sc.(ED) Computer Science
      B.Sc.(ED) Health Education
      B.Sc.(ED) Human Kinetics
      B.Sc.(ED) Integrated Science
      B.Sc.(ED) Mathematics
      B.Sc.(ED) Physics

      FACULTY OF MANAGEMENT SCIENCE:
      B.Sc. Accounting
      B.Sc. Banking and Finance
      B.Sc. Business Administration
      B.Sc. Cooperative and Rural Development
      B.Sc. Entrepreneurship
      B.Sc. Marketing
      B.Sc. Public Administration

      FACULTY OF SCIENCE:
      B.Sc. Biology
      B.Sc. Chemistry
      B.Sc. Computer Science
      B.Sc. Environmental Science and Resource Management
      B.Sc. Information Technology
      B.Sc. Mathematics
      B.Sc. Maths and Computer Science
      B.Sc. Physics

      FACULTY OF SOCIAL SCIENCE:
      B.Sc. Broadcast Journalism
      B.Sc. Criminology And Security Studies
      B.Sc. Development Studies
      B.Sc. Economics
      B.Sc. Film Production
      B.Sc. International Relations
      B.Sc. Mass Communication
      B.Sc. Peace Studies and Conflict Resolution
      B.Sc. Political Science
      B.Sc. Tourism Studies

      POSTGRADUATE PROGRAMMES
      FACULTY OF AGRICULTURE:
      PGD. Agricultural Extension Management

      FACULTY OF ART:
      PGD. Christian Theology
      M.A. Christian Theology
      M.A. Islamic Studies
      M.A. English (language)
      M.A. English (literature in English)
      M.A. English (Comparative Literature)
      M.A. Christian Religious Studies (Old Testament)
      M.A. Christian Religious Studies (New Testament)
      M.A. Christian Religious Studies (Philosophy of Religion)
      M.A. Christian Religious Studies (Religion of Society)
      M.A. Christian Religious Studies ( African Traditional Religion)
      M.A. Christian Religious Studies (Systematic Theology)
      M.A. Christian Religious Studies (Pastoral Theology)

      FACULTY OF EDUCATION:
      M.ED. Educational Technology
      M.ED. Science Education
      M.ED. Education
      M.ED. Administration and Planning
      M.ED. Guidance and Counselling

      FACULTY OF MANAGEMENT SCIENCE:
      PGD. Business Administration
      PGD. Public Administration
      Masters in Business Administration
      Masters in Public Administration
      M.Sc. Business Administration
      M.Sc. Public Administration
      PGD. Entrepreneurship
      M.Sc. Entrepreneurship

      FACULTY OF HEALTH SCIENCE:
      M.Sc. Public Health

      FACULTY OF SCIENCES:
      PGD. Information Technology
      M.Sc. Information Technology

      FACULTY OF SOCIAL SCIENCES:
      PGD. Economics
      PGD. Mass Communication
      M.Sc. Mass Communication
      PGD. Peace Studies and Conflict Resolution
      M.Sc. Peace Studies and Conflict Resolution
      PGD. Criminology and Security Studies
      M.Sc. Criminology and Security Studies
      PhD English Language
      PhD Educational Administration
      PhD Educational Technology
      PhD Science Education
      Ph.D. Educational Planning
      PhD Mathematics Education
      PhD Business Administration
      PhD Public Administration
      PhD Peace Studies and Conflict Resolution
      PhD Information Technology
      PhD Mass Communication
      PhD/MPhil Peace Studies and Conflict Resolution
      PhD/MPhil Business Administration
      PhD/MPhil Public Administration
      PhD Criminology and Security Studies
      PhD Christian Religious Studies (Old Testament)
      PhD Christian Religious Studies (New Testament)
      PhD Christian Religious Studies (Philosophy of Religion)
      PhD Christian Religious Studies (Church History)
      PhD Christian Religious Studies ( African Christian Theology)
      PhD Christian Religious Studies ( African Traditional Religion)
      PhD Christian Religious Studies (Systematic Theology)
      PhD Christian Religious Studies (Pastoral Theology)
      PhD/MPhil Criminology and Security Studies
      Ph.D. Law
      PhD Christian Theology (Religion and Society)

      NOUN School Fee Schedule

      Undergraduate Payment Schedule

      S/No
      New student
      Payment FeesAmount (N)
      1Semester Registration Fees
      2Caution Deposit
      3Orientation Fees
      4Matriculation Fees
      5I.D. Card
      6Library Fees
      7ICT Administrative Charges
      8E-Facilitation
      9Jamb Regularization
      10Result/ Verification
       Total compulsory Fees59,0250.00
      S/No
      Returning student
      Payment FeesAmount (N)
      1Registration Fees
      2Caution Deposit 
      3Orientation Fees 
      4Matriculation Fees 
      5I.D. Card 
      6Library Fees
      7ICT Administrative Charges
      8E-Facilitation
      9Jamb Regularization 
      10Result Verification 
       Total compulsory Fees32,250.00

      Postgraduates Payment Schedule

      S/NoPayment FeesAmount (N)
      1Registration Fees
      2Caution Deposit
      3Orientation Fees
      4Matriculation Fees
      5I.D. Card
      6Library Fees
      7ICT Administrative Charges
      8E-Facilitation
      9Result Verification
      10Transcript Fee
       Total compulsory Fees
      S/NoPayment FeesAmount (N)
      1Registration Fees6,000.00
      2Caution Deposit 
      3Orientation Fees 
      4Matriculation Fees 
      5I.D. Card 
      6Library Fees3,000.00
      7ICT Administrative Charges5.000.00
      8E-Facilitation4,000.00
      9Result Verification 
       Total compulsory Fees32,500.00

      Project Fees

      1. Undergraduates N25,000.00
      2. Post-Graduate Diploma N40,000.00
      3. Masters N50,000.00

      Exam Fees

      1. Undergraduates N1,500.00 per course
      2. Postgraduates (PGD and Masters) N3,000.00 per course

      NOUN New School Fees Review

      NOUN School Fees for Undergraduate Students

      1) All Returning Students (Undergraduate)

      2) All New Students (Undergraduate)

      S/NFees and ChargesApproved Sum (N)
      1)Semester Registration Fee7,500.00
      2)Caution Deposit5,000.00
      3)Orientation Fee3,000.00
      4)Matriculation Fee2,500.00
      5)I.D. Card1,000.00
      6)Library Fee4,000.00
      7)ICT Administration Charge7,500.00
      8)E-Facilitation7,500.00
      9)JAMB Regularization7,500.00
      10)Result Verification10,000.00
      Course Registration
      11)2 Credit Units Course2,000.00
      12)3 Credit Units Course2,500.00
      13)4 Credit Units Course (Law Students)3,000.00
      Examination Registration
      14)Undergraduate Students (per course)1,500.00
      Second Semester Registration
      15)Semester Registration Fee7,500.00
      16)Library Fee4,000.00
      17)ICT Administration Charge7,500.00
      18)E-Facilitation7,500.00
      Course Registration
      19)2 Credit Units Course2,000.00
      20)3 Credit Units Course2,500.00
      21)4 Credit Units Course (Law Students)3,000.00
      Examination Registration
      22)Undergraduate Students (per course)1,500.00

      NOUN School Fees for Postgraduate Students

      3) All Postgraduate Fees

      S/NFees and ChargesApproved Sum (N)
      Postgraduate Semester Registration for New Students
      1)Semester Registration Fee10,000.00
      2)Caution Deposit7,000.00
      3)Orientation Fee5,000.00
      4)Matriculation Fee3,000.00
      5)I.D. Card1,000.00
      6)Library Fee5,000.00
      7)ICT Administration Charge7,500.00
      8)E-Facilitation7,500.00
      9)Result Verification10,000.00
      10)Student Transcript Verification5,000.00
      Semester Registration for Returning Students
      11)Semester Registration Fee10,000.00
      12)Library Fee5,000.00
      13)ICT Administration Charge7,500.00
      14)E-Facilitation7,500.00
      Course Registration
      15)2 Credit Units Course4,000.00
      16)3 Credit Units Course5,000.00
      Examination Registration
      17)Per Course3,000.00


      4a) Ancillary Charges

      S/NFees and ChargesApproved Sum (N)
      Teaching Practice and SIWES Fees
      1)Teaching Practice and SIWES Fees for Undergraduates in relevant Faculties12,000.00
      2)Teaching Practice (for PGDE students) in the Faculty of Education15,000.00
      3)Practicum (for M.Ed. Educational Administration and Planning students and Guidance and Counselling)15,000.00


      4b) Practicum/Clinical Attachment in the Faculty of Health Sciences

      S/NFees and ChargesApproved Sum (N)
      1)Practicum/Clinical Attachment – undergraduate15,000.00
      2)All Practical Courses in the Faculty of Science – undergraduate5,000.00
      3)Practicum/Clinical Attachment – postgraduate20,000.00


      4c) Research Seminar and Project Registration Fees

      S/NFees and ChargesApproved Sum (N)
      1)Undergraduate Programmes25,000.00
      2)Seminar Course/ Undergraduate5,000.00
      3)Postgraduate Diploma programmes40,000.00
      4)Seminar Course/ Postgraduate Diploma10,000.00
      5)Master Degree Programmes50,000.00
      6)Seminar Course / Masters10,000.00


      4d) Ph.D. Programmes Fees and Charges

      S/NFees and ChargesApproved Sum (N)
      1)Semester Registration Fee50,000.00
      2)Caution Deposit30,000.00
      3)Orientation Fee10,000.00
      4)Matriculation Fee10,000.00
      5)I.D. Card2,500.00
      6)Library Fee10,000.00
      7)ICT Administration Charge15,000.00
      8)E-Facilitation10,000.00
      9)Result Verification10,000.00
      10)Laboratory Fee30,000.00

      Facts about National Open University of Nigeria, NOUN

      How much does it cost to gain admission into noun?

      Pay as follow for NOUN online application forms: Undergraduate Programmes N5, 000.00 (five thousand naira only) Postgraduate (PGD and Masters) Programmes N7, 500.00 (Seven thousand five hundred naira only).

      How do I check my school fees in NOUN?

      NOUN Fee Checker: Use our Fee Checker to select your program, level, and semester. A quick search reveals your registrable courses and expected tuition fees. Please use our NOUN Fees checker to see your fees this semester

      How much are NOUN fees per semester?

      In the recent increase, returning students no longer pay #18,000 as compulsory fee increased to #20,500, For new students the fee is increased from #55,500 to #58,000.15 Jan 2024. Please note that this is just semester fee, use our NOUN school fees checker above to view the exact amount

      Can you skip a semester in NOUN?

      Yes, NOUN allows students to defer their admission to a future semester if they are unable to begin their studies as initially planned.

      How many years is the NOUN program?

      The duration of degree programmes at NOUN varies depending on the programme and the student’s study pace. Typically, undergraduate programmes range from two to eight years depending on entry level and pace, while postgraduate programmes can take between one and three years to complete.

      Is NOUN a federal university?

      The National Open University of Nigeria is a federal open and distance learning (ODL) institution, the first of its kind in the West African sub-region.

      Can I pay NOUN school fees twice?

      Semester. but it is advisable to pay twice. balance can be topped up the next semester.

      How do nouns pay school fees?

      All NOUN School fees or payment are done through the Remita payment platform, which can be paid online or at a bank.

      Is the NOUN recognized internationally?

      Is NOUN recognized internationally? The degrees and certificates awarded by NOUN are widely accepted in Nigeria and recognised both locally and internationally.

      Does NOUN do part-time?

      NOUN does not offer part-time programme, rather it provides flexible and full-time study to learners.

      How many years is public health in nouns?

      Duration of the programme shall be in line with existing National University’s Commission (NUC) policy for the first degree programme in Nigerian Universities. The programme is designed for a minimum of four (4) years and maximum of eight (8) years for all categories of students as stated in the entry requirements.

      Does NOUN accept HND for masters?
      An applicant for postgraduate admission into NOUN is normally expected to have a minimum of a first degree ( second class lower) for masters or HND for PGD and Masters in a related field in addition to 5 O-Level credits including English Language and Mathematics.

      How do NOUN students receive lectures?

      NOUN will deliver instructions through the following: Printed Materials. Learning Management System (LMS) Radio and Television broadcasts.

      Can a NOUN student go for NYSC?

      “With the changing demographics of our great nation, the government has recognised the importance of allowing NOUN graduates to participate in the NYSC scheme. “The doors of the Law School are now open to the graduates, ensuring equal opportunities for all.

      How many years is a course in Open University?

      Certificate of Higher Education (120 credits)2 years
      Diploma of Higher Education (240 credits)4 years
      Bachelors/Honours degree (360 credits)6 years

      Streamline YourS/N Fees and Charges Approved Sum (N)
      1) Semester Registration Fee 50,000.00
      2) Caution Deposit 30,000.00
      3) Orientation Fee 10,000.00
      4) Matriculation Fee 10,000.00
      5) I.D. Card

      The National Open University of Nigeria is a federal open and distance learning (ODL) institution, the first of its kind in the West African sub-region.

      Can I pay NOUN school fees twice?

      Semester. but it is advisable to pay twice. balance can be topped up the next semester.

      How do nouns pay school fees?

      All NOUN School fees or payment are done through the Remita payment platform, which can be paid online or at a bank.

      Is the NOUN recognized internationally?

      Is NOUN recognized internationally? The degrees and certificates awarded by NOUN are widely accepted in Nigeria and recognised both locally and internationally.

      Does NOUN do part-time?

      NOUN does not offer part-time programme, rather it provides flexible and full-time study to learners.

      How many years is public health in nouns?

      Duration of the programme shall be in line with existing National University’s Commission (NUC) policy for the first degree programme in Nigerian Universities. The programme is designed for a minimum of four (4) years and maximum of eight (8) years for all categories of students as stated in the entry requirements.

      Does NOUN accept HND for masters?
      An applicant for postgraduate admission into NOUN is normally expected to have a minimum of a first degree ( second class lower) for masters or HND for PGD and Masters in a related field in addition to 5 O-Level credits including English Language and Mathematics.

      How do NOUN students receive lectures?

      NOUN will deliver instructions through the following: Printed Materials. Learning Management System (LMS) Radio and Television broadcasts.

      Can a NOUN student go for NYSC?

      “With the changing demographics of our great nation, the government has recognised the importance of allowing NOUN graduates to participate in the NYSC scheme. “The doors of the Law School are now open to the graduates, ensuring equal opportunities for all.

      How many years is a course in Open University?

      Certificate of Higher Education (120 credits)

      2 years

      Diploma of Higher Education (240 credits)

      4 years

      Bachelors/Honours degree (360 credits)

      6 years School Enrollment Online

      Join Harken School today and unlock a smoother, stress-free registration process.

      Seamless Registration for Your Entire Family

      Explore answers to popular questions and get the details you need—quickly and effortlessly.

      How does the online registration process work?

      It’s simple! Fill out the online form, upload documents, and submit—no need to visit in person.

      What documents are required for registration?

      You’ll need proof of address, birth certificate, and vaccination records.

      Can I register multiple children at once?

      Yes, our platform allows you to register all your children in one session.

      What if I have additional questions?

      Feel free to reach out to our support team via email or phone for personalized assistance.