Multiple Choice
If a subclass constructor does not explicitly call a superclass constructor __________.
A) it must include the code necessary to initialize the superclass fields
B) the superclass fields will be set to the default values for their data types
C) Java will automatically call the superclass's default or no-arg constructor immediately after the code in the subclass's constructor executes
D) Java will automatically call the superclass's default or no-arg constructor just before the code in the subclass's constructor executes
Correct Answer:

Verified
Correct Answer:
Verified
Q54: A compiler error will result if an
Q55: If a method in a subclass has
Q56: The _ key word is used to
Q57: When declaring class data members it is
Q58: What is wrong with the following code?
Q59: In an inheritance relationship _.<br>A) the subclass
Q60: It is not possible for a superclass
Q61: Every class has a toString method and
Q63: If two methods in the same class
Q64: When a subclass extends a superclass, the