Multiple Choice
If a superclass does not have a default constructor or a no-arg constructor:
A) then a class that inherits from it, must initialize the superclass values.
B) then a class that inherits from it, must call one of the constructors that the superclass does have.
C) then a class that inherits from it, does not inherit the data member fields from the superclass.
D) then a class that inherits from it, must contain the default constructor for the superclass.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: All methods in an abstract class must
Q36: If two methods have the same name
Q57: When declaring class data members it is
Q60: What is wrong with the following code?<br>Public
Q62: Look at the following code. Which line
Q62: If a subclass constructor does not explicitly
Q63: When an interface variable references an object,
Q64: Look at the following code. Line 1
Q64: When a subclass extends a superclass, the
Q70: What is required for an interface method