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
Differentiate between == and equals().
How do you achieve singleton?
What is a loop java?
What are the types of methodology?
What is the primitive type byte?
Can a class have more than one object?
What are the three parts of a lambda expression? What is the type of lambda expression?
How will you serialize a singleton class without violating singleton pattern?
Is arraylist ordered in java?
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?
Which is the best approach for creating thread ?
What are the advantages of compiled language?
Explain which of the following methods releases the lock when yield(), join(),sleep(),wait(),notify(), notifyall() methods are executed?
What is the difference between length and size in java?
What is r in java?