Which of the following is used for implementing inheritance through an interface?
Which of the following is used for implementing inheritance through an interface? Correct Answer implements
Interface is implemented using implements keyword. A concrete class must implement all the methods of an interface, else it must be declared abstract.