Abstract vs Interface classes

A. INTERFACE : In every sector have some guidelines or conventions that must be followed by the players : Standards are Interfaces.In java, an interface is a reference type that contains only constants (does not need to implement or declare the variables), method signatures(no braces), default methods, static methods, and nested types.1. Implemented by classes […]