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 Using the given base class Student, create the following:
A boolean equalsStudent 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, ie 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:
Name: Kungfu Panda
Credit Hours Earned:
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:
Name: Kungfu Panda
Credit Hours Earned:
Student ID:
Name: Kungfu Panda
Credit Hours Earned:
true
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
