Chapter 8: Constructors & Destructors

 

Results

Previous
Next

#1. Dynamic binding is also known as ________

Previous
Next

#2. A “child” class is said to be ________ from the base class.

Previous
Next

#3. ______ is visible only within class.

Previous
Next

#4. Early binding is also called as ________ binding.

Previous
Next

#5. Manipulator funcion exist in ______________

Previous
Next

#6. >> symbol denotes ___________

Previous
Next

#7. Constructor which accept objects as arguments is called _________

Previous
Next

#8. C++ provides a pair of in-built special member functions called _______

Previous
Next

#9. _______ constructs the object.

Previous
Next

#10. _______ destroy the object.

Previous
Next

#11. The ____________ automatically execute these functions.

Previous
Next

#12. _______ initializes the objects of its class.

Previous
Next

#13. Constructor have no _______ type.

Previous
Next

#14. __________ are called automatically whenever an object is created.

Previous
Next

#15. Constructor should be declared in ________ area.

Previous
Next

#16. _______ have the name same as class name.

Previous
Next

#17. A Constructor with no parameters is called ___________ Constructor.

Previous
Next

#18. A constructor that takes arguments are called ________ constructor.

Previous
Next

#19. A constructor with object reference as its argument is called _______ constructor.

Previous
Next

#20. Allocation of memory to objects at the time of their construction is known as _______ constructor.

Previous
Next

#21. The Symbol of copy constructor is _____

Previous
Next

#22. ____________ are also member functions of a class.

Previous
Next

#23. __________ are called automatically whenever an object is destroyed.

Previous
Next

#24. Destructor preceded by _______ symbol.

Previous
Next

#25. ________ have no return type.

Previous
Finish