Multiple Choice
A subclass may call an overridden superclass method by __________.
A) prefixing its name with the super key word and a dot (.)
B) prefixing its name with the name of the superclass in parentheses
C) using the extends key word before the method is called
D) calling the superclass method first and then calling the subclass method
Correct Answer:

Verified
Correct Answer:
Verified
Q27: In an inheritance relationship, the subclass constructor
Q28: If you don't provide an access specifier
Q29: Which key word indicates that a class
Q30: In Java, a reference variable is _
Q31: Given the following code: Line 1 public
Q33: You can write a super statement that
Q34: Which of the following is an example
Q35: In the following code, which line has
Q36: If two methods have the same name
Q37: Which of the following statements correctly specifies