Which of the following statements are correct?
An interface must specify methods by defining a minimum implementation.
An interface can define methods with non-public visibility but in this case the class that implements will have to define its methods with equal or less restricted visibility.
An interface can only define"public"visibility methods.
A class that wants to implement an interface must use the"extends"operator
A class can implement multiple interfaces.