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

Can you store multiple data types in System.Array?

7 Answers  


How do you declare an interface in c#?

0 Answers  


What is class sortedlist underneath?

0 Answers  


What's the difference between a method and a procedure?

0 Answers  


Explain the three services model (three-tier application).

3 Answers   4Cplus,






How?s method overriding different from overloading?

4 Answers  


What is different about switch statements in c#?

0 Answers  


Does C# support multiple inheritance?

5 Answers  


Define multicast delegate in c#?

0 Answers  


What is lazy keyword in c#?

0 Answers  


What is the difference between finally and finalize block?

0 Answers  


How can you write a class to restrict that only one object of this class can be created (Singleton class)?

0 Answers  


Categories