Multiple choice

Any method in a superclass can be overridden in its subclass.

  1. true

  2. false

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Not all methods can be overridden. Methods marked as 'final' or 'static' in a superclass cannot be overridden in a subclass.