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 javac in java?
What are the rules for variable declaration?
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?
What is use of arraylist in java?
What is the list interface?
Explain the use of volatile field modifier?
What is the use of parseint in java?
What are advantages of exception handling in java?
What is ide with example?
What are streams?
What is the use of join method?
What is Garbage Collection in Java
Define packages in java?
How many bits are in a sentence?
Can a final variable be initialized in constructor?