What is the difference between Abstract and Interface?
Answer Posted / munwar
Interface and abstract class are just same,but both have
their own usability and advantages..
Difference b/w both.
1). Interface is highlevel abstract(means there is no
single implementation), but in abstract class there can be
implementation.
2)Interface does not allow accessfiers like
public,private.. but abstract class allow these accessifiers
3) Interface does not supports contant values but abstract
calss supports constatnt values..
4) Interface supports multiple inheritance but class does
not support multiple inheritance..
5).interface can not implement abstract class but abstract
calss can impelment interface...
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What is out int in c#?
Which attribute adorn a test class to be picked up by the NUnit GUI in the NUnit test framework?
How long can a string be c#?
Is c# a keyword?
Explain attributes in c#?
2. What happened when BO object has been called?
What is a method signature?
What is difference between variable and property in c#?
What is the boxing and unboxing in c#?
What is parameterized constructor?
What is check/uncheck?
Explain the term inheritance in C#.
How will you deploy the dll file in gac?
Explain inheritance in c#?
What is the difference between internal and protected in c#?