Beginner Object-Oriented Programming Concepts
Q39 / 100

What happens if a subclass does not override a method from its parent class?

Correct! Well done.

Incorrect.

The correct answer is B) The subclass inherits and uses the parent's implementation of that method

B

Correct Answer

The subclass inherits and uses the parent's implementation of that method

Explanation

Unless overridden, a subclass simply uses the inherited version of a method as-is.

Progress
39/100