Y go for Interface? What is use of interface?

Answers were Sorted based on User's Feedback



Y go for Interface? What is use of interface?..

Answer / purushotham .tella

An Interface is a collection of semantically related
abstract members.Used To Support Multiple Inheritance

Is This Answer Correct ?    6 Yes 0 No

Y go for Interface? What is use of interface?..

Answer / venkat2050

interfaces is in concept of late binding which happen at
runtime which a part in OOPs concept
the interface has indexes of abstact
it should in public

Is This Answer Correct ?    4 Yes 2 No

Y go for Interface? What is use of interface?..

Answer / kiran

We will go for an interface when we want to implement a
specific behaviour.

ex:
1.My class x implements IDisposable interface to handle
cleaup operation. I have to implement that behaviour by
implementing the method interface method Dispose()
explicitly in my code.

class x:IDisposable
{}
2.My class y implements IComparable interface to implement
sorting between a list of objects created of type y. Here I
have to implement CompareTo method.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Sharp Interview Questions

Why do we use dictionary in c#?

0 Answers  


How do I type a whitespace character?

0 Answers  


What is a string? What are the properties of a string class?

1 Answers  


Explain manifest in c#.

0 Answers  


What is difference between list and dictionary in c#?

0 Answers  


how to cleanup object that does not support dispose method? How to implement dispose for such scenarios?

2 Answers   ITC Infotech,


What is a datacontract?

0 Answers  


What is the default value of date?

0 Answers  


Explain About the Sattilite Assembly in .Net Technology?

2 Answers   TCS,


Is void a class?

0 Answers  


What's c# ?

0 Answers  


When should you use generics?

0 Answers  


Categories