Which form of inheritance is reflected by the transitive nature of inheritance?
Hybrid
Hierarchical
Multiple
Multilevel
What is the access of public base members in the derived class when the base class is inherited with public visibility mode?
private
internal
protected
public
Which class is serving only as a base class for other classes?
Abstract class
Base class
Derived class
Containership
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
Which class is known as power packed class?
Existing class
Super class
Which among the following class does not contain the object declaration?
sealed class
abstract class
base class
sub class
What is the access of base members in the derived class when the base class is inherited with private visibility mode?
Which of the following is not the type of an inheritance?
Multiple inheritance
Single inheritance
Multilevel inheritance
Distributive inheritance
Which C++ punctuator is used in derived class definition for denoting that the class should be inherited?
comma
semi colon
colon
single quote
What is the access of base members in the derived class when the base class is inherited with protected visibility mode?