adplus-dvertising
frame-decoration

Question

If class C inherits class B. And B has inherited class A. Then while creating the object of class C, what will be the sequence of constructors getting called?

a.

Constructor of C then B, finally of A

b.

Constructor of A then C, finally of B

c.

Constructor of C then A, finally B

d.

Constructor of A then B, finally C

Answer: (d).Constructor of A then B, finally C

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. If class C inherits class B. And B has inherited class A. Then while creating the object of class C, what will be the sequence of constructors getting called?

Similar Questions

Discover Related MCQs

Q. Which among the following is true for copy constructor?

Q. If the object is passed by value to a copy constructor:

Q. Which among the following helps to create a temporary instance?

Q. For constructor overloading, each constructor must differ in ___________ and __________

Q. How many types of constructors are available, in general, in any language?

Q. Which constructor is called while assigning some object with another?

Q. It’s necessary to pass object by reference in copy constructor because:

Q. Which specifier applies only to the constructors?

Q. Which among the following is true?

Q. Which type of constructor can’t have a return type?

Q. Why do we use static constructors?

Q. When and how many times a static constructor is called?

Q. Which among the following is true for static constructor?

Q. Within a class, only one static constructor can be created.

Q. Default constructor initializes all data members as:

Q. When is the static constructor called?

Q. If constructors of a class are defined in private access, then:

Q. Copy constructor is a constructor which ________________

Q. The copy constructor can be used to:

Q. If two classes have exactly same data members and member function and only they differ by class name. Can copy constructor be used to initialize one class object with another class object?