Explanation: Concrete class implements an interface.
Read moreHow interface is implemented in Java with example?
An interface in Java is a blueprint of a class. It has static constants and abstract methods.
Read moreCan Java interface have implementations?
All methods of an Interface do not contain implementation (method bodies) as of all versions below Java 8 . Starting with Java 8, default and static methods may have implementation in the interface definition.
Read moreWhat does it mean to implement an interface in Java?
The implements keyword is used to implement an interface . The interface keyword is used to declare a special type of class that only contains abstract methods. To access the interface methods, the interface must be “implemented” (kinda like inherited) by another class with the implements keyword (instead of extends ).
Read more