What is difference between Abstract Class and Interface?

Answer Posted / tarunkumar

Abstract class is a class in which it will contain both the
abstract and non-abstract methods.The abstract class must
be inheritable by another class. In vb.net it will be
defined using mustinheritable keyword.
The syntax is :
Public MustInheritable Class classname

Interface is a class in which it will contain only the
abstract methods. The interface can be implemented or not
by the another class.The functions in interface will be
implemented by the another class which implements the
interface.
The syntax is :
Public Interface interfacename

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain about the feature anonymous type?

772


How to store decimal data in .net?

823


Did vb6 support multi-threading ?

715


What is the feature anonymous type?

680


What is sealed class?

793


Which dll is used for microsoft .net run time?

709


What is the advantage of using system.text.stringbuilder over system.string?

816


What is the use of console application?

763


What is datatype conversion?

723


Define naming convention?

782


How do you call a stored procedure in Visual Basic?

753


What are the different types of applications supported in .net (or) .net framework?

699


Which class allows an element to be accessed using unique key?

694


Explain clr?

734


What is the difference between system.applicationexception class and system.systemexception?

887