Interface A {
String test();
}
Interface B {
int test();
}
Create a class AB which must implements both A & B
interfaces.
Answer Posted / niltarlekar
public class AB implements A,B
{
public static void main(String args[])
{
}
}
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is jdbc api?
What is multi level inheritance in java?
What is the disadvantage of synchronization?
What does you mean in math?
What is the use of http-tunneling in rmi?
Is array passed by reference in java?
What is collection class in java?
What are the two basic ways in which classes that can be run as threads may be defined?
What is singleton class in ruby?
What is singleton pattern?
Explain method local inner classes ?
How many bytes are there?
What is sorting in java?
What is synchronization and why is it important in java programming?
What is java lang object?