Computer Science - Object Oriented Programming Using C++ - Discussion

Discussion Forum : Object Oriented Programming Using C++ - Section 2 (Q.No. 9)
9.
When you create a derived class and instantiate an object _____
the parent class object must be constructed first
the child class object must be constructed first
the parent class object must not be constructed
the child class object must not be constructed
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
6 comments Page 1 of 1.

Madhuri Kumawat said:   1 decade ago
Its wrong. We don't create object of parent class, because parent class is called using child class object. Option B is correct.

Ayaz said:   1 decade ago
Yes parent class will called automatically when child class object is created.

Varu said:   9 years ago
Only child class object will be created.

Himani said:   8 years ago
I think the answer is B.

Mzr Rao said:   8 years ago
Here is not about calling. Question is about object construction, so first object will be construct of parent class and then child class.

Saba said:   5 years ago
Here is not about calling. Question is about object construction, so first object will be construct of parent class and then child class.

When you create a derived class and instantiate an object the parent class object must be constructed first.

Post your comments here:

Your comments will be displayed after verification.