InterviewSolution
Saved Bookmarks
| 1. |
What is Abstract class? Explain |
|
Answer» It is a class that is declared with an ABSTRACT keyword. An abstract class can have both abstract and non-abstract METHODS and needs to be EXTENDED. In this class, the METHOD must be implemented and cannot be instantiated. |
|