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 a void method java?
What is composition in java?
What is java jit compilers?
What is the set interface in java programming?
What is difference between iterator access and index access?
What variables are stored in stack?
What is the class in java?
What are the wrapped, classes?
What is bool mean?
What is a locale?
How do you detect memory leaks?
What is hasnext in java?
Write a java program for binary search?
What does those terms actually mean included in the j.d.k i.6?
What is mysql driver class name?