Interface A {
String test();
}
Interface B {
int test();
}
Create a class AB which must implements both A & B
interfaces.
Answers were Sorted based on User's Feedback
Answer / akhil agarwal
Interface A
{
string test();
}
Interface B
{
int test();
}
class AB implements A,B
{
string test();
int test();
}
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / menita
interface A
{
String test();
}
interface B
{
int test();
}
public class AB implements B
{
A obj1 = new A(){
public String test()
{
return "";
}
};
public int test()
{
return 0;
}
}
Is This Answer Correct ? | 7 Yes | 10 No |
Answer / srinivasa
Class AB Implements A,B{
String test(){
SOS("----");
}
int test(){
SOS("--------");
}
}
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / niltarlekar
public class AB implements A,B
{
public static void main(String args[])
{
}
}
Is This Answer Correct ? | 0 Yes | 4 No |
Answer / sailaja
Interface A {
String test();
}
Interface B {
int test();
}
Class AB implements A,B
{
String test()
{
System.out.println("Test");
}
int test()
{ System.out.println("Test1");
}
}
Class Test
{
public static void main(String as[])
{
Interface i=null;
i=new AB();
i.test();
}
}
Is This Answer Correct ? | 4 Yes | 10 No |
Answer / sandeep vudutala
interface A
{
String test();
}
interface B extends interface A
{
int test();
}
public Class AB implements B
{
public String test()
{
}
public int test()
{
}
}
Is This Answer Correct ? | 5 Yes | 23 No |
What are synchronized methods ?
Why unicode is important?
Explain differences between collection api and stream api?
what are the design patterns in struts?
What is a generic data type?
How do you reverse sort in java?
What are the 6 mandatory procedures for iso 9001?
What is the escape character in java?
Explain the importance of finally over return statement?
What are the advantages of arraylist over arrays?
What is the static keyword?
Is java 11 paid version?