Which type of inheritance is possible for inheriting many sub classes from a single base class?
Hierarchical inheritance
Multiple inheritance
Multilevel inheritance
Hybrid inheritance
How can be control the visibility or availability of a class member?
Visibility mode
Access specifier
Derivation
Deriving
Which of the following OOPs concept have the capability to inherit properties of another class?
Polymorphism
Inheritance
Abstraction
Composition
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.
What is the access of base members in the derived class when the base class is inherited with protected visibility mode?
private
protected
internal
public
Which type of base class members are not directly accessible to derived class?
Public
Protected
Private
Internal
What is the access of protected base members in the derived class when the base class is inherited with public visibility mode?
Which inheritance can be used when the derived class requires to use some attributes of the base class and cannot be inherited?
Privately
Publicly
Internally
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
What do you mean by the relationship of two classes such that the objects of a class enclosed within the other class.?
Containership
Base class
Abstract class
Derived class