ABC interview question

What is diff between Abstact and virtual

Interview Answer

Anonymous

24 Sept 2011

This deals with object oriented programming. An ABSTRACT function within a class HAS NO implementation and must be implemented in any classes that inherit from that class. A VIRTUAL function HAS an implementation in that class but can still be overriden in any classes that inherit from that class.