What is hybrid inheritance?
Combination of hierarchical and multiple inheritance
Combination of hierarchical inheritance
Combination of multiple and multilevel inheritance
Combination of single and hierarchical
Which member of a base class are not directly accessible to derived class?
Public
Protected
Private
None of these
Which of the following statement is not true about inheritance?
Data hiding
Over riding
Doesn't help in resuability of code
Program development time is reduced
Combination of two or more forms of inheritance is
Single inheritance
Multiple inheritance
Multilevel inheritance
The most important advantage of inheritance is
Reusability
Overloaded function
Overloading
Initialization of object
Advantage of reusability is
Faster development time
Easier maintenance
Easy to extend
All these
Which of the following is correct when a class is inherited publically?
Public members of the base class become protected members of derived class.
Public members of the base class become private members of derived class
Private members of the base class become protrctrd members of derived class.
Public members of the base class become public members of derived class
When a subclass inherits from multiple base classes, it is known as
Hybrid inheritance
When a subclass inherits from a class that itself inherits from another class, it is known as
The public, private or protected specifier that controls the visibility and availability of a member in class is
Visibility mode
Access specifier
Derivation
Deriving