Answer Posted / rajeshbonepalli
An interface can extend other interfaces, just as a class
can extend or subclass another class. However, whereas a
class can extend only one other class, an interface can
extend any number of interfaces. The interface declaration
includes a comma-separated list of all the interfaces that
it extends.
interface Sameinterface1 { }
interface Sameinterface2 { }
interface Sameinterface3 { }
....
...
interface SameinterfaceN { }
interface Sameinterface4 extends
Sameinterface1 ,Sameinterface2 ,...Sameinterface3 ,
SameinterfaceN {
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Which container method is used to cause a container to be laid out and redisplayed in java programming?
How do I know if java is installed?
What is the abstraction?
What do you understand by classes in java?
What are the differences between getting and load method?
Can we have a try block without catch block?
What are the approaches that you will follow for making a program very efficient?
What is the use of set in java?
State the merge-sort principle and its time complexity.
Lowest Common ancestor in a Binary Search Tree and Binary Tree.
what do you mean by stream pipelining in java 8? Explain
Is integer passed by reference in java?
Explain different forms of polymorphism?
How many types of variables are there?
In which order the iterator iterates over collection?