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 the purpose of Interfaces?

Answers were Sorted based on User's Feedback



what is the purpose of Interfaces?..

Answer / chandu

Simply you can say "to achieve multiple inheritance"

Is This Answer Correct ?    11 Yes 1 No

what is the purpose of Interfaces?..

Answer / chinju

interface is used for multiple inheritance.all methods in
the interfaces must be implemented in the child class

Is This Answer Correct ?    8 Yes 1 No

what is the purpose of Interfaces?..

Answer / mohammed ameem

Interfaces are used for defining the set of members which
need to be implemented. Interfaces allows calling methods of
object which may be remotely located or instantited. Thus,
Interface act as interface between the distributed
applications. Hence the name opts

Is This Answer Correct ?    6 Yes 0 No

what is the purpose of Interfaces?..

Answer / sunil mahla

In big companies, project manager understand the client
requirement and make interfaces. These interfaces are then
distributed to the under developers.
Since interfaces are just outline of the method, so
developers must use them in there class and code them.
Developer need only concentration on coding. He need not
worry about which methods he use to achieve client requirement.

So interfaces provide only outline to the developer to get
the goal.

Is This Answer Correct ?    4 Yes 1 No

what is the purpose of Interfaces?..

Answer / pradip kr sen

Basic Purpose is to use the defined structure/Pattern of
common implementation on the child location.

For example , in a straightline interface you defined
{x1,y1} and {x2,y2} as a parameter.
So while constructing triangle class with the help of
straighline interface(through inheritance) , you need to
follow the same number of parameter defined
on 'Straighline' Interface.

Is This Answer Correct ?    4 Yes 2 No

what is the purpose of Interfaces?..

Answer / mohit jethva

1. Interface is use for follow the some coding standard
2. If we create interface then each and every devloper has
to implement all the methods.
3. For e.g. If we are creating application for Vichele then
we need to create one interface for two wheeler and one
interface for four wheeler. When any of devloper is going
to extend it then he/she has to implement every method like
Break , Gear , Liver etc....
4. Force to implement all the methods from interface.
5. Multiple inheritance.

Is This Answer Correct ?    1 Yes 0 No

what is the purpose of Interfaces?..

Answer / amit

interface is used for multiple inheritance.all methods in
the interfaces must be implemented in the child class

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Sharp Interview Questions

What is array and types of array in c#?

0 Answers  


Example of value type and refarnce type

4 Answers   Synechron,


How do you prevent a method from being overridden in c#?

0 Answers  


What is a static class in c#?

0 Answers  


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

1 Answers   iGate,


c# code for how to merge two sorted arrays Input : A = 2,5,8,4 B = 3,9,10,5 Output : 2,3,4,5,5,8,9,10

3 Answers  


Is c++ or c# better?

0 Answers  


What is the use of console readkey in c#?

0 Answers  


How many bytes is a char c#?

0 Answers  


What can we do to handle multiple exceptions?

0 Answers   Accenture,


What is a jagged array?

0 Answers  


How a two-dimensional array declared in C#?

0 Answers   Siebel,


Categories