Which type of method cannot be overridden in Java?
Explanation
In Java, methods declared as final cannot be overridden by subclasses. This ensures the method's implementation remains unchanged. While static methods are hidden rather than overridden, and println is a normal method that can be overridden, final methods explicitly prevent overriding.