InterviewSolution
Saved Bookmarks
| 1. |
What type of methods an interface contain by default?(a) abstract(b) static(c) final(d) private |
|
Answer» Right choice is (a) abstract Explanation: By default, interface contains abstract methods. The abstract methods need to be implemented by concrete classes. |
|