All the derived classes can access only a few members of base class that other derived classes can’t access at same time, in hierarchical inheritance.

All the derived classes can access only a few members of base class that other derived classes can’t access at same time, in hierarchical inheritance. Correct Answer False

The derived classes have full access to all the non private member’s of base class. Every derived class have equal access, none of the class can have special access to specific members of base class in general cases.
Bissoy MCQ

Related Questions

When multiple inheritance is used, which class object should be used in order to access all the available members of parent and derived class?
If hierarchical inheritance requires to inherit more than one class to single class, which syntax is correct? (A, B, C are class names)