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
Is everything an object c#?
What basic steps are needed to display a simple report in crystal?
what is IDisposal interface,IComparable,IEquatable,IFormatable
What is a console operator?
What is an interface class in c#?
Why we use get and set method in c#?
When should I throw an exception?
What are fields in c#?
What is argument in c#?
How big is int16?
Is as keyword in c#?
What is difference between constants and readonly in c#?
How can encapsulation be achieved?
Does c# support properties of array types?
What are tuples c#?