There are three interfaces A,B & C. A extends B, B extends C,
and C extends A.Is it multiple Inheritance? please anybody
help me.....
Answer Posted / sadikhasan palsaniya
There is Cyclic inheritance which is not possible in java.
interface A{}
interface B extends A{}
interface C extends A{}
interface D extends B,C{}
It's call Multiple inheritance.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How does sublist works in java?
What is array initialization in java?
What is the best definition for data?
Is java map thread safe?
What is a generic type?
if u open login & logout ,how can udisplay the timelogin & logout members ?
What is the difference between abstraction and encapsulation?
Explain different ways of creating a thread?
What is meant by singleton class?
What is java english?
Is null a keyword in java?
What is java util collection?
How will you call an Applet using Java Script Function?
What is the purpose of the System class?
Can a static class implement an interface?