hey guys i am not getting one point that where to use implements and where extends...
please make me understand..
interface I1{ void greet(); } interface I2{ void show() } interface I3 extends I1,I2{ // why we use extends here rather than implements void info(); }