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 do you mean by sealed classes and static classes?
What is the difference between add and addrange in c#?
Why do we use partial class in c#?
What is the difference between list and dictionary in c#?
What is difference between array and collection?
What is master page in asp net c#?
What is signature c#?
What is the main purpose of xml?
How do I join one form to another in c#?
Explain about Error handling and how this is done
What is int64 in c#?
What is the use of 'using' statement in c#?
Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?
What is Wrapper class in dot net?
What is dll hell, and how does .net solve it?