How do you relate a Interface to a Class? Tell me in
Detail?

Answers were Sorted based on User's Feedback



How do you relate a Interface to a Class? Tell me in Detail?..

Answer / guest

IS-A RELATIONSHIP ?

Is This Answer Correct ?    3 Yes 0 No

How do you relate a Interface to a Class? Tell me in Detail?..

Answer / s.thirunavukarasu

with the help of implementing interface,we can relate a
interface to a class.
for example
interface firstone
{
public void display();
}
class myprm implements firstone
{
public void disply()
{
system.out.println("welcome to java world");
}
}

Is This Answer Correct ?    2 Yes 0 No

How do you relate a Interface to a Class? Tell me in Detail?..

Answer / ranganathkini

A class relates to an interface, in that the class
implements all the methods of the interface.

The implementing class can eiether provide a concrete
implementation of the interface's methods or provide an
abstract implementation.

Is This Answer Correct ?    1 Yes 0 No

How do you relate a Interface to a Class? Tell me in Detail?..

Answer / ravikiran

with implements

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Differentiate jar and war files?

0 Answers  


Does sprintf allocate memory?

0 Answers  


List some important characteristics on jre

0 Answers  


jdbc drivers?

8 Answers   Wipro,


Do loops java?

0 Answers  






What is replaceall in java?

0 Answers  


What is the function of character?

0 Answers  


Can we extend private class in java?

0 Answers  


What are class types in java?

0 Answers  


How do you declare a string variable?

0 Answers  


Which collection is thread safe in java?

0 Answers  


How many ways can you break a singleton class in java?

0 Answers  


Categories