Answer Posted / vijayakumar chinnasamy
There is no limit for interface extends. One interface can
extends any number of interfaces.
interface inter1 { }
interface inter2 { }
interface interN { }
interface ExtendsInterface extends inter1,inter2,... , interN {
}
| Is This Answer Correct ? | 31 Yes | 4 No |
Post New Answer View All Answers
Explain about the main() method in java?
Write a program to reverse a number in java?
Can we define static methods inside interface?
Describe method overriding
Is arraylist sorted in java?
Can I learn java without any programming experience?
What is meant by collection in java?
What is t in generics in java?
How do I convert a numeric ip address like 192.18.97.39 into a hostname like java.sun.com?
Can an object be null?
What is the difference between interface & abstract class?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
23. Storage space in java is of the form Stack Queue Heap List 24. What is java code embedded in a web page known as Applets Servlets scriptlets snippets 25. Which of the following attributes are compulsory with an
Write a program to find the greatest of three numbers in java?
Are generics important java?