Can final method be overridden?
B
Correct answer
Explanation
Final methods in Java CANNOT be overridden by subclasses. The final keyword specifically prevents modification - it's the entire purpose. When a method is declared final, subclasses must use it as-is and cannot provide their own implementation. Therefore the answer 'False' to 'Can final method be overridden?' is correct.