Page 1 of 1

Create the Student class. The class has two instance variables: Name and Courses. Name is a string, Courses is a string[

Posted: Thu May 05, 2022 1:02 pm
by answerhappygod
Create the Student class. The class has two instance variables:
Name and
Courses. Name is a string, Courses is a string[]. Write the
following:
a. A default constructor that sets Name to “default” and the size
of
Courses to 3
b. A parameter constructor with an int parameter that sets the size
of
Courses to the parameter
c. An instance method for the student class that displays the name
of a
student and all the courses that student is taking.