-
What will happen if we provide concrete implementation of method in interface?
-
- Compilation failure
- The concrete class implementing that method need not provide implementation of that method
- Method not found exception is thrown
- Runtime exception is thrown
- None of these
Correct Option: A
The methods of interfaces are always abstract. They provide only method definition.