Interface A {
String test();
}
Interface B {
int test();
}
Create a class AB which must implements both A & B
interfaces.
Answer Posted / prakash
CLASS AB:A,B
{
String test()
{
}
int test()
{
}
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is java regex?
What is externalizable?
When should we create our own custom exception classes?
What are the library functions in java?
What is a final class ?
Explain the JDB in depth & command line.
What are the different access modifiers available in java?
How is java hashmap implemented?
How do you compare characters in java?
Why convert an applet to an application?
How does list work in java?
What is a function in programming?
What is difference between array and vector?
What is the difference between serializable and externalizable interfaces?
Can we define constructor in inner class?