Java OCA OCP Practice Question 630

Question

An abstract method cannot be overridden.

Select 1 option

  • A. True
  • B. False


Correct Option is  : B

Note

Abstract methods are meant to be overridden in the subclass.

Abstract methods describe a behavior but do not implement it.

So the subclasses have to override it to actually implement the behavior.




PreviousNext

Related