Question: java code please ja 1 The Enrollment System with Linked List You will implement a linked list of student records enrolled for a course that

java code please ja 1 The Enrollment System with Linked List Youjava code pleasewill implement a linked list of student records enrolled for a course ja

1 The Enrollment System with Linked List You will implement a linked list of student records enrolled for a course that can be edited by the system administrator. The basic student class consists student name (i.e., maximum 60 characters), age (i.e., decimal number), identification number (i.e., 7 digits), address (i.e., maximum 100 characters), and gender (i.e., M, or F) The course class have data fields such as course name (i.e., maximum 40 characters), number of credits (i.e., decimal number), instructor Id (i.e., same as faculty Id and maximum 7 digits), year (i.e decimal number), and semester (e.g., Fall, Spring, Summer ) that the course is presented. There is also a size and capacity data fields that helps to show the current number of students enrolled for the course and total available seats The faculty class have information regarding the faculty members of the department. The faculty class consists faculty name (i.e., maximum 60 characters), age (i.e., decimal number) identification number (i.e., 7 digits), degree (i.e., maximum 10 characters), major (i.e., maximum 40 characters), address (i.e., maximum 100 characters), and gender (i.e., M, or F) 1.1 Design and implementation requirements The test class should allows the system administrator to edit the information regarding students enrolled for the courses, faculty that present each course and courses that are presented for the semester. The linked list should be used to save the records for each class. There class method members are defined as below. The major methods of the student class AddStudent(Id, Name): The student information of the department can be added to the end of the linked list. The method accepts at least student identification number and name as an input arguments UpdateStudent(Id): The student information of the department can be updated in the linked list. The method first finds the corresponding node that has same Id data field and update the student record information. . PrintStudents): The all student names of the department should be displayed on the screen. 1 The Enrollment System with Linked List You will implement a linked list of student records enrolled for a course that can be edited by the system administrator. The basic student class consists student name (i.e., maximum 60 characters), age (i.e., decimal number), identification number (i.e., 7 digits), address (i.e., maximum 100 characters), and gender (i.e., M, or F) The course class have data fields such as course name (i.e., maximum 40 characters), number of credits (i.e., decimal number), instructor Id (i.e., same as faculty Id and maximum 7 digits), year (i.e decimal number), and semester (e.g., Fall, Spring, Summer ) that the course is presented. There is also a size and capacity data fields that helps to show the current number of students enrolled for the course and total available seats The faculty class have information regarding the faculty members of the department. The faculty class consists faculty name (i.e., maximum 60 characters), age (i.e., decimal number) identification number (i.e., 7 digits), degree (i.e., maximum 10 characters), major (i.e., maximum 40 characters), address (i.e., maximum 100 characters), and gender (i.e., M, or F) 1.1 Design and implementation requirements The test class should allows the system administrator to edit the information regarding students enrolled for the courses, faculty that present each course and courses that are presented for the semester. The linked list should be used to save the records for each class. There class method members are defined as below. The major methods of the student class AddStudent(Id, Name): The student information of the department can be added to the end of the linked list. The method accepts at least student identification number and name as an input arguments UpdateStudent(Id): The student information of the department can be updated in the linked list. The method first finds the corresponding node that has same Id data field and update the student record information. . PrintStudents): The all student names of the department should be displayed on the screen

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!