What is the difference between Abstract and Interface?
Answer Posted / nikhila
Abstract class contain both complete and incomplete methods
The implementation for abstract methods will be in derived class. Access specifier will allow
Interface contains only incomplete methods.The implementation will be in other class.Access specifier will not allow.by default public can use
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is multiple interface in c#?
What is difference between abstract class and interface in c#?
How to create multi-dimensional array?
Where do we use serialization in c#?
What does using do in c#?
What language do desktop applications use?
Define delegate in c#?
Is lazy t thread safe?
What is sql transaction in c#?
What is the difference between protected and private?
What is the difference between dynamic and var in c#?
What is yield keyword?
what is the default access for a class
Explain async and await?
What is private in c#?