Answer Posted / kalidoss
Abstract class is a class and it contains one or more
abstract method but it doesn't have any implementation in
it,that is only it has declaration not definition.The
abstract methods are implemented in supclass that is which
class inherites from Abstract class.Abstract class always
can't be instantiated.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Can an exception be thrown from a catch block?
What is native image generator (ngen.exe)?
Why do we use parameters in c#?
What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?
What's the difference between class and object?
What is the difference between dispose() and finalize() methods in c#?
Explain inheritance in c#?
What is a hash table in c#?
What is data dictionary in c#?
Is and as keyword in c# net?
Is it possible to execute multiple catch block for a single try statement?
What is clr namespace?
What is the main purpose of linq?
can you declare an override method to be static if the original method is not static?
Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?