Suppose interface Inty
defines five methods.
Suppose class Classy declares that it implements Inty
but does not provide implementations for any of the five interface methods.
Which is/are true?
C, D.
If a class does not provide implementations for all methods of all interfaces that the class declares it implements, that class must be declared abstract.
Abstract classes may not be instantiated.