When do you absolutely have to declare a class as abstract
(as opposed to free-willed educated choice or decision based
on UML diagram)?
Answer Posted / umesh
When at least one of the methods in the class is abstract.
When the class itself is inherited from an abstract class,
but not all base abstract methods have been over-ridden.
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of dependency injection?
What does private void mean in c#?
What is the difference between continue and break statement?
What is activator c#?
What is the difference between system.string and system.text.stringbuilder classes?
What is the relationship between a process, application domain, and application?
list the steps in code compilation in c#?
What is the C# syntax to catch any possible exception?
Can abstract class be instantiated c#?
What are destructors in C#?
What is yield c#?
What is arraylist?
How to implement singleton design pattern in c#?
What is difference between ilist and list in c#?
For methods inside the interface why can’t you specify the accessibility modifier?