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
What is the name of the java compiler?
How do you identify if jvm is 32-bit or 64-bit from java program?
What is the difference between variable declaration and variable initialization?
Why is serialization required?
What exactly is methodology?
What is functional interface in java?
can rmi and corba based applications interact ?
Is singleton a bad practice?
What is the loop in java?
How do you implement polymorphism in our day to day life?
Difference between comparator and comparable in java?
What is java instanceof operator?
What is the main advantage of passing argument by reference?
What is covariant return type?
What is Classloader in Java?