Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.44 KB

README.md

File metadata and controls

22 lines (17 loc) · 1.44 KB

Student-Registration-System

Procedural Programming concepts with C++ first project of the first year.

Scenario

UMS - University management system with many features which helps to keep records of available students, courses, examinations, etc. Some of the functionalities are Online Student Admission/Registration, Separate User ID and Password Generation, Online Admission Card Generation, Capability of Managing Courses and Subjects, Online Examination, Online Result, Online Payment Collection, Learning Management System. Managing student information in a correct way is the biggest challenge Universities face.

You have been hired as one of the software developer to develop the above system. The system development happens as an incremental delivery and the first version is to develop the online student registration. This assignment concerns to develop only the functionalities given below.

  • Add students to the system with their student IDs, first names, surnames, addresses, contact numbers, courses and the ages
  • Update student details (Only the selected details)
  • Display student details
  • Search the student details with student id
  • Search the student list enrolled for a given course
  • Delete a student record (if necessary)

The expectation of the university administration is a menu driven application which satisfies all the above requirements. A procedural programming solution was proposed and C++ was chosen as the programming language.