What?s the difference between an interface and abstract
class?

Answers were Sorted based on User's Feedback



What?s the difference between an interface and abstract class?..

Answer / sunitha

Interface - All Methods in the Interface are abstract
Methods.So the Access Modifier is public by default which
helps the Class ABC Implementing the Interface to define
the code for the methods

Abstract - > Protected Methods can be defined & implemented
in Abstract Class. This class does some implementation of
its own & leaves the remaining implementation to the
Derived Class

1.Multiple Inheritance is possible through Interface only.
2.If we add any new method in the interface, then all the
derived class has to be altered to include the
implementation of the method.
3.Interface is on the Top Level

Is This Answer Correct ?    5 Yes 0 No

What?s the difference between an interface and abstract class?..

Answer / guest

In the interface all methods must be abstract; in the
abstract class some methods can be concrete. In the
interface no accessibility modifiers are allowed, which is
ok in abstract classes.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More C Sharp Interview Questions

What is Partial class? What purpose we use it?

6 Answers   ACS, TATA,


Y go for Interface? What is use of interface?

3 Answers  


What is the difference between a method and a property?

0 Answers  


How do you prevent a class from being inherited?

0 Answers  


What is datarelation c#?

0 Answers  






What are the types of parameters in c#?

0 Answers  


How can we sort an array in c#?

0 Answers  


What is the difference between abstraction and encapsulation in c#?

0 Answers  


What do you mean by string objects are immutable?

0 Answers  


What are events in C#?

0 Answers   CDC,


What is lazy t?

0 Answers  


What is binding in c#?

0 Answers  


Categories