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

Explain manifest & metadata?

5 Answers   IBM, Wipro,


Where is c# compiler located?

0 Answers  


Explain the difference between class and interface in .net?

0 Answers  


Is XML case-sensitive?

3 Answers   Wipro,


What are instance fields in c#?

0 Answers  






What?s a satellite assembly?

2 Answers  


Hi to everybody. Lastweek i had taken an interview on c#. They ask what is boxing & unboxing, Masking.Please tell the answer and it is useful for me.

8 Answers  


What are escape sequences explain with example?

0 Answers  


What is difference between abstract class and interface in c#?

0 Answers  


How do I stop my console from closing in c#?

0 Answers  


Why delegate is used in c#?

0 Answers  


What is the difference between dynamic type variables and object type variables in c#?

0 Answers  


Categories