In multilevel inheritance constructors will be executed
from the .... class to ... class

Answers were Sorted based on User's Feedback



In multilevel inheritance constructors will be executed from the .... class to ... class..

Answer / ps

Constructors are always executed from the parent to child
ie in the example below:
#include <iostream>
using namespace std;

class base1
{
public:
base1()
{
cout<<"In constructor of base1"<<endl;
}
~base1()
{
cout<<"In destructor of base1"<<endl;
}

};

class base2:public base1
{
public:
base2()
{
cout<<"In constructor of base2"<<endl;
}
~base2()
{
cout<<"In destructor of base2"<<endl;
}
};
class derived :public base2
{
public:
derived()
{
cout<<"In constructor of derived"<<endl;
}
~derived()
{
cout<<"In destructor of derived"<<endl;
}
};

void main()
{
base1 b1;
base2 b2;
derived d1;
}

o/p:
In constructor of base1 --- for object b1
In constructor of base1 --- for object b2
In constructor of base2-----
In constructor of base1-for object d1
In constructor of base2
In constructor of derived

Is This Answer Correct ?    19 Yes 6 No

In multilevel inheritance constructors will be executed from the .... class to ... class..

Answer / chaitanya

In constructor of base1-----for object b1
In constructor of base1-----for object b2
In constructor of base2------for object b2
In constructor of base1-----for object d1
In constructor of base2-----for object d1
In constructor of derived----for object d1
In destructor of derived
In destructor of base2
In destructor of base1

Is This Answer Correct ?    12 Yes 6 No

Post New Answer

More OOPS Interview Questions

When is a memory allocated to a class?

11 Answers  


c++ is a pure object oriented programming or not?

5 Answers   Wipro,


What is meant by oops concept?

0 Answers  


Differences between inline functions and non-inline functions?

4 Answers   Ness Technologies,


What are functions in oop?

0 Answers  






What is the different between Applet and Application?

2 Answers  


Polymorphism with an example?

8 Answers   Accenture, emc2,


Program to check whether a word is the first word of the sentence.

1 Answers  


why function overloading is not called as pure polymorphism?

2 Answers  


A file pointer always contains the __________ of the file

5 Answers  


What is abstraction in oop?

0 Answers  


What is the real time example of inheritance?

0 Answers  


Categories