InterviewSolution
Saved Bookmarks
| 1. |
The members of a derived class can never be derived.(a) True(b) FalseThis question was posed to me in an interview for internship.My enquiry is from Derived Class topic in section Classes of Object Oriented Programming |
|
Answer» RIGHT option is (b) False Easiest explanation - This is not true that the members of a derived class can’t be derived. All the classes are considered to be a normal class when used for derivation. The members can be derived with RESPECT to their ACCESS SPECIFIERS. |
|