Which of the following statements is true about abstract class?
A. An abstract class is not a class itself
B. An abstract class is a complete class with abstract method
C. An abstract class is an incomplete class with abstract method
D. None of the listed options
Answer: Option B
Solution (By Examveda Team)
Abstract classes are classes that contain one or more abstract methods. An abstract method is a method that is declared, but contains no implementation. Abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods.
can you pls help me