What is the difference between Abstract and Interface?
Answer Posted / jithin j
Interface: contain only abstract method and static and final (constant) variable.Even if we don't use static and final keyword it is considered as constant
Abstract: contain both abstract and non abstract method
Interface: class implements interface
Abstract : class extends abstract class
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is lazy loading entity framework?
Can extension methods access private members?
What are strongly typed objects?
What is a base class in C#?
How does the clr work?
What is out in c#?
What is predicate builder?
What does mean c#?
What is type cast in C#?
Can we inherit private members of class in c#?
What is helper method in c#?
what are the different ways a method can be overloaded?
What does async mean in c#?
What is the CTS, and how does it relate to the CLS?
What do you mean by default constructor?