Multiple Choice
The extends keyword specifies that the subclass inherits members of the superclass, so:
A) the base class begins with a set of predefined methods and fields inherited from its hierarchy of superclasses.
B) the derived class begins with a set of predefined methods and fields inherited from its hierarchy of superclasses.
C) the derived class begins with a set of predefined methods inherited from its hierarchy of fields.
D) the base class begins with a set of predefined methods inherited from its hierarchy of derived classes.
Correct Answer:

Verified
Correct Answer:
Verified
Q32: Which of the following is true of
Q33: A method in a subclass overriding a
Q34: Which of the following are not inherited
Q35: Abstract methods can be overridden.
Q36: An interface can contain one or more
Q38: Several classes implement an interface, but all
Q39: Suppose you write a program in which
Q40: Inheritance helps organize related classes into _.
Q41: Why does Java provide a protected access
Q42: Private fields and methods are inherited.