8.4k views
5 votes
work in pairs to plan for writing a student class with constructors. use this worksheet to decide on the variable names and types for your instance variables, and all constructor and method headers. once approved by your teacher, you will then enter these items plus all additional code for the student class. discuss what type of information you might want to store about each student. choose 4 of those items and write down a variable name and variable type for each. these will be your instance variables. a. write down the method header for the default constructor. b. write down a method header for a constructor with 1 or 2 parameters, receiving the most important information about a student. c. write down the method header for the constructor which will receive 4 parameters, one for each instance variable. write down the method header for the print() method. write down the method header for the main method. *** show this to your teacher for approval, then work with your partner to enter all the code for the student class on the runestone site.

User Ispiro
by
7.8k points

1 Answer

5 votes

Answer:

Instance Variables:

name (String)

age (int)

grade (int)

id (int)

Method Headers:

Default Constructor: public Student()

Constructor with 1 or 2 parameters: public Student(String name, int id)

Constructor with 4 parameters: public Student(String name, int age, int grade, int id)

print() method: public void print()

main method: public static void main(String[] args)

Note: This is just an example, and you should choose the variable names and types that are appropriate for your class based on the information you want to store about each student. Also, get your teacher's approval before proceeding to implement the class.

Step-by-step explanation:

User Default
by
8.3k points