InterviewSolution
| 1. |
Define Abstract Class? |
|
Answer» A CLASS which contains the abstract keyword in its declaration is known as abstract class. It can have abstract and non-abstract methods (METHOD with body). A class which contains the abstract keyword in its declaration is known as abstract class. It can have abstract and non-abstract methods (method with body). |
|