Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpdesilva/student-registration-system
Procedural Programming concepts with C++ first project of the first year.
https://github.com/bpdesilva/student-registration-system
c-plus-plus cpp procedural-programming regex regular-expression visualcplusplus visualcpp
Last synced: about 2 months ago
JSON representation
Procedural Programming concepts with C++ first project of the first year.
- Host: GitHub
- URL: https://github.com/bpdesilva/student-registration-system
- Owner: bpdesilva
- License: mit
- Created: 2018-09-07T18:57:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-07T19:13:10.000Z (over 6 years ago)
- Last Synced: 2023-03-05T03:30:04.856Z (almost 2 years ago)
- Topics: c-plus-plus, cpp, procedural-programming, regex, regular-expression, visualcplusplus, visualcpp
- Language: C++
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.