Q. Which is/are true for an abstract class?
-
(A)
Abstract class is declared using the “abstract” keyword.
-
(B)
Abstract class is declared using the “implements” keyword.
-
(C)
It is a class that’s not assumed to be instantiated but instead plays as a base class.
-
(D)
Trying to instantiate an abstract class results in an error.
✅ Correct Answer: (A)
Abstract class is declared using the “abstract” keyword.