Contents

A class serves as base class for many derived classes it is called
a) polymorphism                                 
b) multiple inheritance

c) hierarchical inheritance     
d) none of these

c

The class that is derived from one or multiple classes is called……
a) multiple inheritance             
b) multi-level inheritance
c) simple inheritance
d) all of these

b



Which of the following is the correct structure of multiple inheritance?
a) class c: public A, public B{};
b) class c: public A, public B[];
c) class c: public A, public B();
d) none of these


a

What does polymorphism mean?
a) many                       
b) forms
c) both a & b               
d) none of these

c

The ability of diverse types to respond to functions of same name is called…….
a) polymorphism        
b) inheritance
c) encapsulation
d) none of these

a



The behavior of the object can be implemented at run time is called…
a) late binding    
b) dynamic binding
c) both a & b      
d) none of these


c