which access modifier we can declare the abstract class?
Answer Posted / anish
Abstact class cannot be declared private, as private class cannot be inherited. However it can be declared as public, protected.
Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Does main have to be static c#?
What is difference between abstract class and interface in c#?
Can abstract class have constructor c#?
What is inner class in c#?
What is a scope in c#?
What does console readline do in c#?
What is Named parameter in C#?
List the difference between the virtual method and the abstract method?
Can we make a Static Constructor Parameterized? Give Reason with your answer
What is difference between value and reference types in C#.NET
What is the lock statement in c#?
What are constructors in c#?
Why are strings in c# immutable?
What is a event in c#?
How do you implement thread synchronization (object.wait, notify,and criticalsection) in c#?