True/False
In a class,functions declared with the virtual keyword need not be defined.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q24: Why do you not get an undefined
Q25: Explain the difference between virtual functions,late binding,and
Q26: Virtual functions allow old code to call
Q27: Is there an error?<br>class B<br>{<br>public:<br>void virtual f();<br>};<br>void
Q28: This is legal code.<br>class B<br>{<br>public:<br>// ...<br>virtual void
Q29: In C++,a virtual destructor is invoked whenever
Q30: Give some simple recommendation for when a
Q31: Destructors are automatically virtual.
Q32: What is the error?<br>class B<br>{<br>public:<br>virtual void f();<br>};<br>virtual
Q33: The base class destructor must be virtual.