Toggle nav
What does derived class does not inherit from the base class?
Answer : Option D
Explanation :
The derived class inherit everything from the base class except the given things.
What should be the name of constructor?
Answer : Option C
None.
How many constructors can present in a class?
There can be multiple constructors of the same class, provided they have different signatures.
How many types of constructor are there in C++?
There are three types of constructor in C++. They are Default constructor, Parameterized
constructor, Copy constructor.
What is meant by containership?
Answer : Option A