A school administrator has created a Student class. The class contains variables to represent the following.
An int variable called studentID to represent the student's ID number
A String variable called studentName to represent the student's name
The school administrator has also created a Parent class. The class contains variables to represent the following.
A String variable called parentName to represent the parent's name
A String variable called email to represent the parent's e-mail address
The object penelope will be declared as type Student. The object mrsPatel will be declared as type Parent.
Which of the following descriptions is accurate?
1) The Student class contains variables for studentID and studentName.
2) The Parent class contains variables for parentName and email.
3) The object penelope is an instance of the Student class.
4) The object mrsPatel is an instance of the Parent class.