InterviewSolution
Saved Bookmarks
| 1. |
What Is Interface ? |
|
Answer» A JAVA KEYWORD used to define a collection of method definitions and constant values. It can later be IMPLEMENTED by CLASSES that define this interface with the "implements" keyword. A Java keyword used to define a collection of method definitions and constant values. It can later be implemented by classes that define this interface with the "implements" keyword. |
|