Can we create instance for Abstract class?
Answer Posted / madhu
no,we cannot create instance for abstract class but we can
create reference for abstract class.A reference doesnot
contain its own memory like object when it is created, but
shares the memory of the class.
we can create an object for derived class.we can use
this object to call the methods.
| Is This Answer Correct ? | 27 Yes | 6 No |
Post New Answer View All Answers
What is difference between const and static in c#?
What is default method in c#?
What is default class in c#?
What is delegates and events?
What is the execution entry point for a c# console application?
How can you sort strings in array that are passed to method as arguments?
Why delegates are type safe?
Explain code compilation in c#.
Can I use exceptions in c#?
What is difference between C# and VB.NET?
What is using in c#?
Why do we use namespace in c#?
How can you use abstract class and interface?
What is the resgen.exe tool used for?
Why we use get and set method in c#?