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...


What is an Interface? Have you ever developed an Interface.

Answers were Sorted based on User's Feedback



What is an Interface? Have you ever developed an Interface...

Answer / kinjal

interface is reference type and contain only abstract member.
interface member can be Methods ,events, properties and indexer. but interface contain only declaration of members.
interface can't contain constant ,data field, constructor ,static members, destructors.

Is This Answer Correct ?    8 Yes 1 No

What is an Interface? Have you ever developed an Interface...

Answer / arash

sorry i meant "its like multiple inheritance in C++ "

interface is an oops concept (inheritance)
its like multiple inheritance in C++
but we use Interface in .Net

Public Interface AnInterface //interface
Function WhoAmI() As String
End Interface

Public Class AClass
Implements AnInterface

Public Function WhoAmI() As String Implements AnInterface.WhoAmI
Return "AClass"
End Function

End Class

Is This Answer Correct ?    3 Yes 0 No

What is an Interface? Have you ever developed an Interface...

Answer / suren

It’s an abstract class with public abstract methods all of
which must be implemented in the inherited classes.

Explain him if you have ever developed an interface.

Is This Answer Correct ?    2 Yes 1 No

What is an Interface? Have you ever developed an Interface...

Answer / arash

interface is a oops concept (inheritance)
its like multiple inheritance in C#.net with inheritance Key but we use Interface in VB.Net

Public Interface AnInterface //interface
Function WhoAmI() As String
End Interface

Public Class AClass
Implements AnInterface

Public Function WhoAmI() As String Implements AnInterface.WhoAmI
Return "AClass"
End Function

End Class

Is This Answer Correct ?    0 Yes 3 No

What is an Interface? Have you ever developed an Interface...

Answer / sourabh

Interface is a MIDIOUTER between USER and MACHINE LANGUAGE

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More Dot Net General Interview Questions

How Garbage Collector (GC) Works?

1 Answers  


Using com component in .net?

0 Answers  


What?s typical about a Windows process in regards to memory allocation?

1 Answers  


Difference between abstract class and interface in .net?

0 Answers  


What is a design pattern and what is it for?

0 Answers  


Please explain what are an inheritance, polymorphism, and encapsulation?

0 Answers  


which method do you use to redirect the user to another page without performing a round trip to the client? How?

0 Answers  


What is the difference between Dataset and DataReader? Can u breif me ADO.net classes and architecture

2 Answers   Deloitte,


State the differences between the dispose() and finalize().

0 Answers  


How to create multiple inheritance in c#, with example?

0 Answers  


Explain what is the difference between response.redirect & server.transfer?

0 Answers  


What is the difference between a class and an object, and how do these terms relate to each other?

0 Answers  


Categories