Complete the implementations of various classes in a Student Management System. Read the API for StudentManagementSystem carefully, the API of this lab is available under doc folder in the Java project folder (doc index.html). Some example tests are given to you in the Tester class. You are required to write (at least three) additional tests to further ensure the correctness of your Student Management implementations.

We consider a database that stores information about students and courses. Each student record (e.g., String name, double percentage, int course ID) can be uniquely identified by a String ID (e.g., "e1), whereas each course record (e.g., String name and String instructor for course name and instructor name, respectively ) can be uniquely identified by an integer id (e.g., 2030).

You must implement all methods in the StudentManagementSystem by manipulating the two attributes students and courses, each of which declared as a HashMap.

class StudentManagementSystem {
HashMap < Integer, CourseInfo > courses;
HashMap < String, StudentInfo > students;
/ * All methods must be implemented via ’courses’ and ’students’
* /
}

Override the compareTo and equals methods in the StudentInfo class. Override the equals method in the CourseInfo class.For simplicity, you can assume that a student cannot be registered in multiple courses. For this lab you are required to submit Java files such as CourseInfo, StudentInfo, StudentManagementSystem, Tester in your Eclipse project. Note that the exception classes are available in the project folder.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.