Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Interface A {
String test();
}

Interface B {
int test();
}

Create a class AB which must implements both A & B
interfaces.

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Similarity and difference between static block and static method ?

919


What are different exception types exceptions available in java ?

1008


Explain about sets?

1026


how to convert Java project into Maven ?

1055


Why are data types important?

1095


What is gui programming?

1038


Why is the type for real numbers called double?

960


Is there any sort function in java?

1049


What is procedure overloading?

2313


What is command line used for?

1093


What differences exist between iterator and listiterator?

1047


Why are lists ordered in java?

1012


What is the integer of 16?

976


What are the advantages of java?

991


Is call by reference possible in java?

965