What is the access of protected base members in the derived class when the base class is inherited with public visibility mode?
private
internal
protected
public
Which type of inheritance will inherit a class from the derived class itself?
multilevel
hybrid
multiple
single
Which is the default visibility mode in C++?
What is the access of base members in the derived class when the base class is inherited with protected visibility mode?
Which class is serving only as a base class for other classes?
Abstract class
Base class
Derived class
Containership
Which of the following OOPs concept have the capability to inherit properties of another class?
Polymorphism
Inheritance
Abstraction
Composition
Which form of inheritance is reflected by the transitive nature of inheritance?
Hybrid
Hierarchical
Multiple
Multilevel
Which class will inherit the members and member functions of base class?
sealed class
derived class
super class
abstract class
What is the advantage of reusability?
Faster development time
Easier maintenance
Easy to extend
All 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.