Multiple choice

A final class is a class that is declared with…………keywords so that it can never be sub classes.

  1. super

  2. final

  3. root

  4. none of the above

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

The 'final' keyword prevents a class from being extended (subclassed) and prevents methods from being overridden.