InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is used for implementing inheritance through class?(a) inherited(b) using(c) extends(d) implements |
|
Answer» The correct option is (c) extends For explanation: Class can be extended using extends keyword. One class can extend only one class. A final class cannot be extended. |
|