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

What are the files generated after using IDL to java compiler?

0 Answers  


What is flush buffer?

0 Answers  


How do you implement singleton class?

0 Answers  


Explain the scope or life time of class variables or static variables?

0 Answers  


what do you mean by stream pipelining in java 8? Explain

0 Answers  






Is list ordered in java?

0 Answers  


What do you mean by byte code?

0 Answers  


What is %d in printf?

0 Answers  


What do you mean by order of precedence and associativity?

0 Answers  


What are the basics of core java?

0 Answers  


What is the immediate superclass of the Dialog class?

2 Answers  


what are class,constructor and primitive data types?

2 Answers   IBM,


Categories