In Java, which type of class is not allowed to be extended by any other class?

Choose the correct answer

Explanation

A final class in Java cannot be subclassed, meaning no other class can inherit from it. Abstract classes are designed to be extended, and parent (super) classes can be subclassed unless declared final.

In Java, which type of class is not allowed to be ex… — Java concepts and its programming | PakQuizHub