Question: Step 8 . Create a TestCollegeStudent class. This class should only contain a main method. The main method should create one object of type CollegeStudents
Step Create a TestCollegeStudent class. This class should only contain a main method. The main method should create one object of type CollegeStudents and print its information. Note however that you cannot call directly the constructor of CollegeStudent, since it requires as a first argument an object of type Name not strings for the first and last name So you first should create a Name object and then pass it as a parameter to the constructor of CollegeStudent.
Create a Name object giving as arguments the student's first name and last name.
Create a CollegeStudent object look what are required parameters in the constructor in the CollegeStudent
Print the information about the object to the console using the toString method of the CollegeStudent
Step Run the program.
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
