Multiple choice technology platforms and products

public abstract final method-name(arguments) {} //Can not be compiled?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

An abstract method cannot be declared as final in Java because abstract methods are meant to be overridden in subclasses, whereas final methods cannot be overridden. Thus, this combination causes a compilation error.