Abstract classes cannot be instantiated.
A
Correct answer
Explanation
Abstract classes are designed to be incomplete and cannot be directly instantiated using the 'new' keyword. They serve as templates for subclasses and must be extended before their functionality can be used. Only concrete subclasses of abstract classes can be instantiated.