InterviewSolution
Saved Bookmarks
| 1. |
What is this feature of enforcing definitions of abstract function at compile time called?(a) Static polymorphism(b) Polymorphism(c) Dynamic polymorphism(d) Static or dynamic according to needThis question was posed to me in a national level competition.Query is from Abstract Function in division Member Functions & its Types of Object Oriented Programming |
|
Answer» CORRECT choice is (C) Dynamic polymorphism To EXPLAIN I would say: The FEATURE is known as Dynamic polymorphism. Because the definitions are resolved at RUNTIME. Even though the definitions are checked at compile time, they are resolved at runtime only. |
|