How to Implement an Interface Without Giving an Implements Keyword
In the code below, inter is an interface which has a method add(int i1,int i2). The implementation is done in Impl class. Interface code(inter.java)public interface inter{ public int add(int i1,int