An abstract class is inherited, an Interface also
inherited(multiple inheritance), How it differences.
Answer Posted / raman sharma
Abstract class is just like a normal class but we cannot create its object. Abstract class has abstract methods as well as the concrete methods.
Interface has the only abstract properties and methods means they are not defined in the interface but are implemented in the child classes
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is fcl in c#?
What is writeline?
What is a jagged array?
What is byte c#?
List down the access modifiers available in c#?
What are the differences between events and delegates in c#?
What is the difference between system.text.stringbuilder and system.string?
What is a string c#?
Is it possible to restrict the scope of a field/method of a class to the classes in the same namespace?
Can we extend sealed class in c#?
What is out int in c#?
Explain metadata in c#.
What is the difference between static and private constructor in c#?
How to find whether the application is run from inside ide or not?
Can enum be null c#?