which access modifier we can declare the abstract class?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / kapil jain
public and internal are those access modifiers which we can
use to declare the abstract class.
Is This Answer Correct ? | 5 Yes | 1 No |
the access modifier of the abstract method should be same in
both the abstract class and its derived class. If you
declare an abstract method as protected, it should be
protected in its derived class. Otherwise, the compiler will
raise an error
and an abstract class can't be private..becz private members
can't be inherit.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / imatoria
Unlike Interface, Abstract class can have private, public
modifiers atleast, but not protected. I am not sure about
internal and protected internal modifiers
Is This Answer Correct ? | 7 Yes | 6 No |
Answer / guest
By using override access modifier we can declare abstract class
Is This Answer Correct ? | 3 Yes | 18 No |
About multi level and multiple inheritance how to achieve in .net ?
What is parsing?
Define an assembly in .net?
How do I type a whitespace character?
What is deferred execution in c#?
Write a short note on interface?
what is class libraries?
What are the 3 different types of arrays?
Is string nullable c#?
What is the difference between abstract and virtual?
What is short circuit logical evaluation?
What are value types and reference types?