Question: Java Programming ; Write a program that can be used in university to manage the registration of courses by students. In this program, you
Write a program that can be used in university to manage the registration of courses by students. In this program, you will manage arrays of linked lists. The number of courses is unknown, also the number of students, and might change from a term to another. Each student has name and ID, and grade, and each course has a title, and code The program uses two dynamic arrays of all students and all courses. Because student can register in more than one course, so one data member of each student object in the array refers to the list of the courses registered by Also, because several students may register to the same course, so one data member of each course object refers to the list of students registered in this course In the testing class, use a list of courses, and a list of students to do the following . Add a new student (Phase I) 2. Add a new course (Phase I) s. Register a new student to a new course (Phase I) 4. Remove a student from a course (Phase I) s. Delete a course (Phase II) 6 Print all students in a course (Phase II) 7. Print all courses registered by a specific student (Phase II) 8. Assign a grade to a student. (Phase II) . Store all information of students and courses in the university file at the exit, and initialize the entire linked list using this information at the beginning of program. (Phase II)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
