Question: Question 1 Using the given base class Student, create the following: A boolean equals ( Student s ) method that compares the current student object

Question 1 Using the given base class Student, create the following:
A boolean equals(Student s) method that compares the current student object and the object passed into the method. It returns true if the two objects have the same content, i.e., id, name, and hours. Otherwise, it returns false.
Override the toString() method so it prints the info of the current student object in the following format:
Student ID: 123456
Name: Kungfu Panda
Credit Hours Earned: 95
Use the given TestStudent class to test your implementation of the equals() and toString() methods. Ensure that they generate correct outputs.
Sample output:
Student ID: 0001
Name: Kungfu Panda
Credit Hours Earned: 95
Student ID: 0001
Name: Kungfu Panda
Credit Hours Earned: 95
true

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!