Interface A {
String test();
}
Interface B {
int test();
}
Create a class AB which must implements both A & B
interfaces.
Answer Posted / dhoom
interface A
{
String test();
}
interface B
{
int test();
}
interface AB implements A extends B
{
....
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of the runtime class in java programming?
How to declare an arraylist in java?
What are use cases?
What is method in research paper?
Can you make a constructor final?
What is class array in java?
What are different types of arrays?
How can you say java is object oriented?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
What does this mean java?
Explain list interface?
What is the difference between Array and Hash Table?
What is navigable map in java?
Can constructor be inherited?
What is the different between get and post?