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


Please Help Members By Posting Answers For Below Questions

What does it mean to be immutable?

542


When should I use singleton?

515


What methods are used in Servlet?Applet communication?

1657


What are constants?

592


What is this () in java?

570






What do you understand by copy constructor in java?

486


List the different types of classloaders in java.

498


Is minecraft java edition free?

570


What is nullpointerexception in java?

519


What are the ways in which a thread can enter the waiting state?

505


Is there a jre for java 11?

548


What is defined as false sharing in the context of multithreading?

500


What is the purpose of checked and unchecked exceptions in JAVA?

556


How to display all the prime numbers between 1 and 100

496


What is the difference between iterator and list iterator?

527