Answer to Question #27229 in C++ for lilly

Question #27229
pseudocode for a system to maintain the records of students. The users should be able to add new student, edit, delete and search information of students. Some of the following details of each student are recorded:
- Student Number
- Name
- National Identification Card Number
- Gender
- Date of birth
- Contact Number
- Nationality
1
Expert's answer
2013-03-29T06:14:41-0400
struct Student {
Student_Number
Name
National_Identification_Card_Number
Gender
Date_of_birth
Contact_Number
Nationality
};

class StudentsManager {
addStudent(number,name, nicn, gendet, dob, cn, nat);
setStudentData(number,dataToSet /*name, nicn and etc*/);
deleteStudent(number,....);
std::list<Student>searchStudents(serach_params)
private:
std::list<Student>students//or std::map <int, Student>
};

also you can use some DB's like sqlite (very lightweightdb) and postgresql/mysql (server is needed)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS