InterviewSolution
Saved Bookmarks
| 1. |
Base class have ________________ of abstraction.(a) Higher degree(b) Lower degree(c) Intermediate(d) Minimum degreeI had been asked this question in an international level competition.I'm obligated to ask this question of Base Class in portion Classes of Object Oriented Programming |
|
Answer» CORRECT choice is (b) LOWER degree The EXPLANATION is: A base class will have LESSER information as compared to those of derived classes. Since derived classes inherit the base class properties and then add on their own features, they elaborate more hence have lower degree of abstraction. |
|