InterviewSolution
Saved Bookmarks
| 1. |
Which problem may arise if we use abstract class functions for polymorphism?(a) All classes are converted as abstract class(b) Derived class must be of abstract type(c) All the derived classes must implement the undefined functions(d) Derived classes can’t redefine the functionThe question was posed to me in final exam.The doubt is from Polymorphism topic in chapter OOPs Concept & Features of Object Oriented Programming |
|
Answer» Correct option is (c) All the derived CLASSES must implement the undefined functions |
|