Multiple choice technology programming languages

9) Abstract class can be initiated directly ?

  1. yes

  2. No

  3. sometimes only

  4. none of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Abstract classes cannot be instantiated directly because they are designed to be incomplete. You must create a concrete subclass that implements all abstract methods before you can create objects. Only concrete subclasses can be instantiated using the new keyword.