If a class is extending/inheriting another abstract class having abstract method, then _______________________

If a class is extending/inheriting another abstract class having abstract method, then _______________________ Correct Answer Either implementation of method or making class abstract is mandatory

Either of the two things must be done, either implementation or declaration of class as abstract. This is done to ensure that the method intended to be defined by other classes gets defined at every possible class.

Related Questions

Abstract class A has 4 virtual functions. Abstract class B defines only 2 of those member functions as it extends class A. Class C extends class B and implements the other two member functions of class A. Choose the correct option below.