What is the difference between Abstract and Interface?
Answer Posted / nitin kumar tomar
In interface All methods are abstract but in Abstract Class
some methods could be concrete.
There is no Methods Implimentation is allowed inside
interface and also No accessibility modifiers are not
allowed in interface.
| Is This Answer Correct ? | 31 Yes | 11 No |
Post New Answer View All Answers
Why do we need to override in c#?
Can we overload the main method in c#?
Why can’t struct be used instead of class for storing entity?
What is the use of constructor in c# with example?
What are the commonly used i/o classes?
What is an expression in c#?
What is difference between array and list?
Are classes passed by reference in c#?
If I return out of a try/finally in c#, does the code in the finally-clause run?
What is the function of the not null constraint?
What is lock statement in C#?
What are variables in c#?
Is c# code is unmanaged or managed code?
Differentiate between dataset and datareader?
What is a protected class c#?