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
I don’t want my class to be inherited by any other class. What should I do?
When is finally block not called?
Why lambda expression is used in java?
can rmi and corba based applications interact ?
What are benefits of java?
What is stored procedure. How do you create stored procedure ?
What is the point of polymorphism java?
What is instance synchronization?
What is Java Package and which package is imported by default?
How do you convert string to int in java?
How do you sort arrays in java?
Can we create our own daemon thread?
What are class types in java?
Is a method a function?
What is the difference between hashset and treeset in java?