Multiple choice technology programming languages

All methods within a final class are implicitly final.

  1. True

  2. False

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

A final class cannot be subclassed, which means none of its methods can ever be overridden. Since overriding is the primary reason for declaring individual methods as final, all methods in a final class are implicitly final, making this statement true.