What is difference between Abstract Class and Interface?

Answers were Sorted based on User's Feedback



What is difference between Abstract Class and Interface?..

Answer / dhinesh

If a class has one abstract method ,the class has to be an
abstract class.
Methods can be implemented in abstract class.


Whereas a interface is like a abstract class...the only
difference being that the methods are never implemented in
Interface.

Is This Answer Correct ?    3 Yes 2 No

What is difference between Abstract Class and Interface?..

Answer / basudev pradhan

i) Abstarct is class does not have Body part,it can't create
instance ,but We provide Abstact method and normal
method,the abstarct can be inheritaed by another class,this
can must be implemented by Abstarct method,
ii) Abstarct class can only once inheritaed by Another class
But the interface can implements the More than one interface,
interface only provide Abstarct method ,this method have
does not body part,this class can implements the interface
Define the absract method

Is This Answer Correct ?    2 Yes 1 No

What is difference between Abstract Class and Interface?..

Answer / 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

More VB.NET Interview Questions

What is redim keyword?

0 Answers  


what is commom language runtime?

0 Answers  


What are the types of generations in garbage collector?

0 Answers  


In order to get assembly info whcih namespace we should import?

1 Answers  


What is the difference between datagrid and gridview?

0 Answers  






Explain about Visual basic.NET culture?

0 Answers  


Write a program that accepts an array of numbers, and two numbers (an element and a position in the array) and inserts the given element into nth position of the array.

2 Answers  


What is the main use of a namespace?

0 Answers  


What is the difference between vb 6 and vb.net?

0 Answers  


Is vb.net a programming language?

0 Answers  


How do you declare static variable and how it is declared and what is its lifetime?

3 Answers   Infosys,


What is the relation between Garbage collector and finalize and destructor?

2 Answers   Kanbay,


Categories