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 replace tool?
How do you convert boolean to boolean?
What is a constructor, constructor overloading in java?
What access modifiers can be used for variables?
What is the point of polymorphism java?
How many bytes is a string in java?
What do you mean by constructor?
What is a line break?
Can we assign integer value to char in java?
Explain the scope of a variable.
Mention some interfaces implemented by linked list in java.
How to retrieve data from database in java using arraylist?
What do you meant by active and passive objects?
What is the preferred size of a component in java programming?
What is the use of runnable interface?