InterviewSolution
Saved Bookmarks
| 1. |
Using which of the following, multiple inheritance in Java can be implemented?(a) Interfaces(b) Multithreading(c) Protected methods(d) Private methods |
|
Answer» Right option is (a) Interfaces Easy explanation: Multiple inheritance in java is implemented using interfaces. Multiple interfaces can be implemented by a class. |
|