Chapter 10: Inheritance

 

Results

Previous
Next

#1. ________ is a memory release operator.

Previous
Next

#2. The Variable _________ has the public scope.

Previous
Next

#3. By default C++ follows ________ type of binding.

Previous
Next

#4. Class Contains __________ and ____________

Previous
Next

#5. The >= operator can be __________

Previous
Next

#6. A ___________ can be Overloaded.

Previous
Next

#7. One of the main features of Object oriented programming is ______________

Previous
Next

#8. _________ concept we achieve reusability of code without redefining it.

Previous
Next

#9. ___________ is the process of deriving one class from an already existing class.

Previous
Next

#10. The new class is called ____ class.

Previous
Next

#11. Existing class is called _______ class.

Previous
Next

#12. A ___________ class represents the most general description.

Previous
Next

#13. A _________ class includes all features of the generic base class and then add qualities specific to it.

Previous
Next

#14. Access specifiers are

Previous
Next

#15. _________ can be accessed only within derived class.

Previous
Next

#16. _______ can be accessed outside of the class.

Previous
Next

#17. A class can be inherited from another class as _________

Previous
Next

#18. One Class is derived from another one class is called ________ inheritance.

Previous
Next

#19. One class is derived from another one class which is already a derived class is known as _______ inheritance.

Previous
Next

#20. One class is derived from more than one class then it is called _______ inheritance.

Previous
Next

#21. If one class is used for more than one inheritance it is called _________ inheritance.

Previous
Next

#22. _______ is the combination of multiple, multilevel and hierarchical inheritance.

Previous
Next

#23. A base class member can be overridden by defining a derived class member with the same name as it is defined in the ____ class.

Previous
Next

#24. Multiple copies of members are derived from the base class using

Previous
Next

#25. When the object of one class declared as a member of another class it is called _______ class.

Previous
Finish