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 is dataadapter c#?

0 Answers  


What is difference between a function and a method?

0 Answers  


What are abstract classes in c#?

0 Answers  


Which language is used for desktop application?

0 Answers  


Can we have a non static member function in a base class to be override in derived with static modifier?

7 Answers   Wipro,






How long has c# been around?

0 Answers  


What is main thread in c#?

0 Answers  


Define a jagged array in c#?

0 Answers  


About multi level and multiple inheritance how to achieve in .net ?

2 Answers   CTS, MMTS,


What is parameter c#?

0 Answers  


what class is underneath the sortedlist class?

0 Answers   Siebel Systems,


1. What is lazy loading? 2. What is delay signing? 3. How to transfer view object to presenter in MVP? 4. How to create a generic class? 5. What is Ajax object? 6. What is explicit interface implementation? 7. I1, I2 interfaces have same methods (say PrintName) explicitly implemented in class C1. Now how to call PrintName method from I1? 8. I have a list of Customers. List the customer with maximum orders using LINQ.

1 Answers   Aptron, Volvo,


Categories