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 the purpose of garbage collection in java?
Is char a data type in java?
What is the use of parse function in java?
How many decimal digits is 64 bit?
Can we declare an array without size in java?
What is the purpose of abstract class?
What is the tradeoff between using an unordered array versus an ordered array?
Is oracle charging for java?
Is it possible to override private or static method in java?
what is the difference between process and thread? : Java thread
Is java developer a good career?
How many bits is a boolean?
How can the checkbox class be used to create a radio button?
Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?
Can inner class extend any class?