Difference between abstract class and interface
Answer Posted / mkm
)1. Accessibility modifier(Public/Private/internal) is
allowed for abstract class.
Interface doesn't allow accessibility modifier
2. class can inherit only one abstract class
class can implement more than one interface.
(2) An abstract class can contain fields,
constructors, or destructors and implement properties. An
interface can not contain fields, constructors, or
destructors and it has only the property's signature but no
implementation.
(3) An abstract class cannot support multiple
inheritance, but an interface can support multiple
inheritance. Thus a class may inherit several interfaces
but only one abstract class.
• Interface is used to "implements"; whereas abstract class
is used to "extends".
• Interface can be used to achieve multiple inheritance;
abstract class can be used as a single inheritance.
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
Why we are using mvc instead of asp.net? : Asp.Net MVC
Describe SOA and the tenets of it?
How can exception be handled with out the use of try catch?
What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?
What do you mean by marshalbyref?
What is an assembly? Explain its parts.
Can we create a multiple user simultaneously ?
1.can we add connection string in global.asax?????????? 2.what are the default files included when we create new web application????
What is meant by server side scripting?
What is a web farm?
What is difference between ispostback and autopostback in asp net?
Can you nest updatepanel within each other?
What are the new navigation controls in asp.net 2.0?
Differences between “dataset” and “datareader”.
What is asp.net mvc5? : Asp.Net MVC