Examveda

What is a pure virtual function in C++?

A. A virtual function defined in a base class

B. A virtual function declared in a base class

C. Any function in a class

D. A function without definition in a base class

Answer: Option B


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it