Interface
all methods in interface are abstract
True or false
Classes CANNOT implement more than one interface
False
what are the access level of fields in interface
public, static and final
interfaces do not have constructors ( abstract classes do as these constructors are usually used in subclasses)
Abstract classes can have constructors, but they cannot be instantiated directly. The constructors are used when a concrete subclass is created.
Interface with single abstract method is called
Functional interface