Multiple choice

Which of the following is a false statement?

  1. A constructor can not be inherited by the subclass.

  2. A final method can not be override in the subclass.

  3. A constructor can be declared final.

  4. A final class can not be extended.

  5. None of the above

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

No, we can not declared a constructor as final because the final method can be inherited but can not be overridden and the constructor can not be inherited.