Java Classes Question:
Download Job Interview Questions and Answers PDF
How to call two interfaces in one interface?
Answer:
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{}
Interface I1{..}Interface I2 extends I1{..}Interface I3 extends I2{}
Download Java Classes Interview Questions And Answers
PDF