A. Only one object can be created from an abstract class.
B. By default methods are virtual.
C. If a derived class does not provide its own version of virtual method then the one in the base class is used.
D. If the method in the derived class is not preceded by override keywords, the compiler will issue a warning and the method will behave as if the override keyword were present.
E. Each derived class does not have its own version of a virtual method.
Correct Answer
If a derived class does not provide its own version of virtual method then the one in the base class is used.
More questions
1. Code that targets the Common Language Runtime is known as