An abstract class is inherited, an Interface also
inherited(multiple inheritance), How it differences.
Answer Posted / priya arun
abstract class is just like a normal class ,but we can't
instantiate an abstract class.
One class can inherit one abstract class.
but interface is just define the signature..it doesnt have
any body.So the methods declared in the interface must
implement in the derived class.
Once we defined the interface any number of class can
implement it...
a class can implement more than one interface also.Through
this also we can achieve multiple inheritance in .net.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is array c#?
What is argument in c#?
What does console mean c#?
Explain the difference between the system.array.copyto() and system.array.clone()?
what is a destructor?
Can we call server-side code (c# or vb.net code) from javascript?
What are assemblies?
What does xpath return?
Explain concurrency with aop?
What are the steps for creating clr trigger
What is an expression in c#?
Explain the difference between access specifier and access modifier in c#?
How Is The Dll Hell Problem Solved In .net?
What is property c#?
Define collections?