Multiple Choice
Why would you want to override a method?
A) It allows you to hide features of the subclass using the super keyword.
B) It allows you to hide features of the superclass that you want to change.
C) It allows you to make the inherited version of the method visible to the client of the subclass.
D) It allows you to invoke the base case method.
Correct Answer:

Verified
Correct Answer:
Verified
Q42: Private fields and methods are inherited.
Q43: An interface can contain instance variables.
Q44: Assuming that class B inherits from class
Q45: Which keyword do we use in the
Q46: Which of the following would make the
Q48: A class must implement at least one
Q49: Which of the following is the correct
Q50: Abstract methods can be called.
Q51: We can instantiate an object from an
Q52: Abstract methods can be private.