88.7k views
4 votes
A final class can't be extended.

*True

*False

User Fredrika
by
4.9k points

1 Answer

5 votes

Answer:

The answer is True.

Step-by-step explanation:

The final class cannot be extended because in java final keyword means "no modification". If it is applied to a variable or anything else then that value becomes a constant after that it cannot be modified.So in cases of class if final keyword is used it means that class cannot be extended.

User Doremi
by
5.3k points