InterviewSolution
Saved Bookmarks
| 1. |
Give one example for an abstract method. |
|
Answer» An abstract method is a method declared in a parent class, but not implemented in it. The implementation of such a method can be given in the derived class, class circle(object): def getradius(self): |
|