What?s an abstract clas?

Answers were Sorted based on User's Feedback



What?s an abstract clas?..

Answer / kiran

1 We must say a class as abstract if it contains at least
one abstract method
2.you cannot create instance of an abstract class.

Is This Answer Correct ?    2 Yes 0 No

What?s an abstract clas?..

Answer / umesh

A class that cannot be instantiated. A concept in C++ known
as pure virtual method. A class that must be inherited and
have the methods over-ridden. Essentially, it?s a blueprint
for a class without any implementation.

Is This Answer Correct ?    1 Yes 0 No

What?s an abstract clas?..

Answer / mohit

it is not pure virtual class like interface. in this we can
implement also method but we can not create instance of
absract class.

Is This Answer Correct ?    1 Yes 0 No

What?s an abstract clas?..

Answer / rajesh

I Think they have no meaning,abstact class is nothing but
we are going to use that class in the program(we are
overcoming this class in the main program) and how it looks
like is written at the starting which we call it as
abstarct class.It will not occupy any memory unless we
create object.

Is This Answer Correct ?    1 Yes 0 No

What?s an abstract clas?..

Answer / pushparaj pentakota(anakapalli

the class which is having atleast one abstract method is called abstract class.and we can't create an object on these classes.we have to implement those methods in child class to make that as concreate class.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What's your approach to fetch static data in your windows form application?

0 Answers   MCN Solutions,


What is the property of a class in c#?

0 Answers  


What are Custom Control and User Control?

1 Answers  


can we throw execption from catchblock

4 Answers   Accenture,


What does the dispose method do with the connection object?

0 Answers  






Is there an equivalent to the instanceof operator in visual j++?

0 Answers  


in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?

0 Answers   Siebel Systems,


What is CLR and its application.?

0 Answers   MCN Solutions,


What is Assembly. and Describe type of assembly. why most developer happy with private assembly.

0 Answers   MCN Solutions,


What is the relation between classes and objects?

0 Answers  


What is call back method?

0 Answers  


Which is faster abstract class or interface in c#?

0 Answers  


Categories