Skip to content
#1. C++ is _________ Programming language.
#2. Main() returns _________ type of value.
#3. :: is called as _______ Operator.
#4. OOP stands for _______________
#5. Manipulator funcion exist in ______________
#6. Size of double data type is _____ byte.
#7. >> symbol denotes ___________
#8. Encapsulation means _____________
#9. C++ is a __________ Level language.
#10. ___________ is describes multiple possible states for a single property.
#11. _________ is the process of using an operator or function in different ways for different set of inputs given.
#12. Compiler determines which function is used based on the parameters passed to the function, this happen during compilation time is known as ___________
#13. ________ is the process of defining a number of objects of different classes into a group and calls the methods to carry out the operation of the objects using different function calls.
#14. _________ is the type of object or pointer may not be known at the time of compilation since they are created dynamically at run time.
#15. __________ function is a member function of a class whose functionality can be over-ridden in its derived classes.
#16. ________ is a member function of a class.
#17. A _________ function call is resolved at run time.
#18. Virtual function can be declared by _________ keyword.
#19. Virtual function cannot be _________ members.
#20. Virtual function can be accessed by using object __________
#21. Virtual function can be ________ of another class.
#22. A __________ function in a base class must be defined even though it may not be used.
#23. In Virtual function, we cannot have virtual constructor but we can have virtual _________
#24. If a virtual function is defined in the base class, it need not be necessarily redefined in the ______ class.
#25. A class which consist atleast one pure virtual function is called an __________ base class.