Interface A {
String test();
}
Interface B {
int test();
}
Create a class AB which must implements both A & B
interfaces.
Answer Posted / dhoom
interface A
{
String test();
}
interface B
{
int test();
}
interface AB implements A extends B
{
....
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why use string handling in Java?
How many types of gc are there in java?
What does a za z0 9 mean?
What is loop in java?
What is %02d?
What is the difference between scrollbar and scrollpane?
What is an 8 bit word?
What is a platform?
Can we overload the constructors?
What is unicode used for?
Is oracle charging for java?
What is the difference between preparedstatement and statement in java?
Explain with example the concept of constant variable in java.
a thread is runnable, how does that work? : Java thread
Using callable statement how can you pass out parameters, explain with example?