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
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
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
What does polymorphism mean?
a) many
b) forms
c) both a & b
d) none of these
The ability of diverse types to respond to functions of same name is called…….
a) polymorphism
b) inheritance
c) encapsulation
d) none of these
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