How to call two interfaces in one interface?

Submitted by: Administrator
You can not call 2 interface in interface but you can extend interfaces in your interface.Example :
Interface I1{..}Interface I2 extends I1{..}Interface I3 extends I2{}
Submitted by: Administrator

Read Online Java Classes Job Interview Questions And Answers