InterviewSolution
Saved Bookmarks
| 1. |
When Is An Abstract Method Used? |
|
Answer» An abstract METHOD is declared in the PARENT class when we want a class which contains a particular method but on the other hand we want its IMPLEMENTATION to be determined by CHILD class. An abstract method is declared in the parent class when we want a class which contains a particular method but on the other hand we want its implementation to be determined by child class. |
|