In Java, which type of class is not allowed to be extended by any other class?
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.