adplus-dvertising
frame-decoration

Question

If all the classes use private inheritance in multilevel inheritance then ______________

a.

It will not be called multilevel inheritance

b.

Each class can access only non-private members of its parent

c.

Each subsequent class can access all members of previous level parent classes

d.

None of the members will be available to any other class

Answer: (b).Each class can access only non-private members of its parent

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. If all the classes use private inheritance in multilevel inheritance then ______________

Similar Questions

Discover Related MCQs

Q. Multilevel inheritance allows _________________ in the program.

Q. What is minimum number of levels for a implementing multilevel inheritance?

Q. In multilevel inheritance one class inherits _______________

Q. All the classes must have all the members declared private to implement multilevel inheritance.

Q. Can abstract classes be used in multilevel inheritance?

Q. How many abstract classes can be used in multilevel inheritance?

Q. If all the classes used parameterized constructors and no default constructor then, ___________

Q. In multilevel inheritance, which is the most significant feature of OOP used?

Q. Is it compulsory for all the classes in multilevel inheritance to have constructors defined explicitly if only last derived class object is created?

Q. Multiple inheritance is ____________________

Q. Which problem arises due to multiple inheritance, if hierarchical inheritance is used previously for its base classes?

Q. How many classes should a program contain to implement the multiple inheritance?

Q. Which programming language restricts the use of multiple inheritance?

Q. Is it possible to have all the abstract classes as base classes of a derived class from those?

Q. If class A inherits class B and class C as “class A: public class B, public class C {// class body ;}; ”, which class constructor will be called first?

Q. Why does diamond problem arise due to multiple inheritance?

Q. How many base classes can a derived class have which is implementing multiple inheritance?

Q. How to overcome diamond problem ?

Q. When multiple inheritance is used, which class object should be used in order to access all the available members of parent and derived class ?

Q. If all the members of all the base classes are private then,