Computer Science, asked by thapasajan5427, 10 months ago

How do we declare an interfere class

Answers

Answered by jaat9211
0

Answer:

An interface is declared by using the interface keyword. It provides total abstraction; means all the methods in an interface are declared with the empty body, and all the fields are public, static and final by default. A class that implements an interface must implement all the methods declared in the interface.

Similar questions