What is the Difference between class and abstract class?

Answers were Sorted based on User's Feedback



What is the Difference between class and abstract class?..

Answer / sujai cn

Class mean a user defined type in which all the methods are
implemented , thus we can create the instance (OBJECT) of
that class.
abstract class is a class in which one are more methods are
abstract(not implemented) abstract method is also called
pure virtual.

Is This Answer Correct ?    3 Yes 0 No

What is the Difference between class and abstract class?..

Answer / dilip devagan

abstract class can be inherited but

we can not create the instance of abstract class

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why dataset is used in c#?

1 Answers  


What is the difference between an XML "Fragment" and an XML "Document." ?

1 Answers  


What does out mean in c#?

1 Answers  


How can I produce an assembly?

1 Answers  


What is task parallel library?

1 Answers  


define ispostback and give some examples

2 Answers  


What is the use of table aliases?

1 Answers  


What is alias in c#?

1 Answers  


What is difference between override and new in c#?

1 Answers  


What are value types and reference types?

1 Answers  


How do you achieve polymorphism in c#?

1 Answers  


What?s the role of the DataReader class in ADO.NET connections?

2 Answers  


Categories