Is this your company?
Design a application using interface..
Anonymous
class Add { static final int a=10; static final int b=15; abstract Add2(); } interface InterfaceDemo extends Add { void Add2() int c=a+b; System.out.println("c"); } class Addition { public static void main(Sring args[]) { InterfaceDemo i=new InterfaceDemo(); i.Add2(); }
Check out your Company Bowl for anonymous work chats.