9) Abstract class can be initiated directly ?
-
yes
-
No
-
sometimes only
-
none of these
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.