Skip to content
#1. ________ is a memory release operator.
#2. The Variable _________ has the public scope.
#3. By default C++ follows ________ type of binding.
#4. Class Contains __________ and ____________
#5. The >= operator can be __________
#6. A ___________ can be Overloaded.
#7. One of the main features of Object oriented programming is ______________
#8. _________ concept we achieve reusability of code without redefining it.
#9. ___________ is the process of deriving one class from an already existing class.
#10. The new class is called ____ class.
#11. Existing class is called _______ class.
#12. A ___________ class represents the most general description.
#13. A _________ class includes all features of the generic base class and then add qualities specific to it.
#14. Access specifiers are
#15. _________ can be accessed only within derived class.
#16. _______ can be accessed outside of the class.
#17. A class can be inherited from another class as _________
#18. One Class is derived from another one class is called ________ inheritance.
#19. One class is derived from another one class which is already a derived class is known as _______ inheritance.
#20. One class is derived from more than one class then it is called _______ inheritance.
#21. If one class is used for more than one inheritance it is called _________ inheritance.
#22. _______ is the combination of multiple, multilevel and hierarchical inheritance.
#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.
#24. Multiple copies of members are derived from the base class using
#25. When the object of one class declared as a member of another class it is called _______ class.