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 multiple interface in c#?
Why would you use untrusted verification?
What is Private Constructor? and it’s use? Can you create instance of a class which has Private Constructor?
What happens if you add duplicate elements to a set?
Write a program in C# for checking a given number is PRIME or not.
How to update the gui from another thread in c#?
Why do we need escape characters?
What is the difference between an application domain and a process?
What is binding in c#?
What are constructors in c#?
Is stringbuilder better than string?
What is the default value of decimal in c#?
Explain the difference between the debug class and trace class?
if a base class has a number of overloaded constructors, and an inheriting class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?
What is string in c# net?