Question: JAVA) Please solve this one. I need output too. Thank you Student Record Manager Create a program to maintain a list of students and their

 JAVA) Please solve this one. I need output too. Thank youStudent Record Manager Create a program to maintain a list of studentsand their grades. Each student should contain the following attributes: a. Firstname b. Last name c. ID d. Email address e. List of

JAVA) Please solve this one. I need output too. Thank you

Student Record Manager Create a program to maintain a list of students and their grades. Each student should contain the following attributes: a. First name b. Last name c. ID d. Email address e. List of courses taken by the students and their grades (Course description and grade). Class design requirements: Your program should contain the following classes. class StudentRecordManager: A class that contains the list of students with the following requirements: Add a student, remove a student, and search for a student by ID or last name. Search by ID should return a single student, but a search by name should check both first name and last name and return a list of student that contain the search string in their name. Add a course to a student and remove a course from the student. getIterator method returns an iterator that allows an external class to iterate through the list of students and process them. The getIterator method returns an iterator that implements the following interface: interface Iterator { E getNext(); boolean hasNext (); // Get the next item //Returns true if has more //items, false otherwise. } class Student: A class to manage the student information. Make a concise list of required attributes necessary for assignment. The Student class should also return an iterator that implements the Iteraror interface and allows you to iterate through the list of courses a student has taken. class Course: An inner class to maintain the course details for each student. class Transcript Printer: A class that prints the transcripts. It has the following overloaded methods: printTranscript that takes a Student as argument and prints the transcript for the specified student. printTranscript that takes a Iterator a list of student IDs as arguments and prints the transcript for the specified students. Use copy constructors in the Student and Course classes to prevent privacy leaks. Privacy leak occurs when you expose a private variable by returning a reference to the private variable in a accessor method

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!