OOPs Concepts
Programming and Technical
Programming
Definition
What is avirtual function?
Read Solution (Total 4)
-
- A virtual function is member function of the class which has the same name in the base and derived class and provides flexibility to be redefined by derived class
- 9 years agoHelpfull: Yes(1) No(0)
- prefix ++a
postfix a++ - 11 years agoHelpfull: Yes(0) No(0)
- In prefix, the value of operand is increased by 1 then, only it is returned but, In postfix like the value of operand is returned first then, only it is increased by 1.
- 10 years agoHelpfull: Yes(0) No(0)
- in prefix form there is increment in operand value before assignment but it is
first assign then increased in case of postfix. - 10 years agoHelpfull: Yes(0) No(0)
OOPs Concepts Other Question