Multiple choice

Abstract classes cannot be instantiated.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.