which access modifier we can declare the abstract class?

Answers were Sorted based on User's Feedback



which access modifier we can declare the abstract class?..

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

which access modifier we can declare the abstract class?..

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

which access modifier we can declare the abstract class?..

Answer / vindhya

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

which access modifier we can declare the abstract class?..

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

which access modifier we can declare the abstract class?..

Answer / guest

By using override access modifier we can declare abstract class

Is This Answer Correct ?    3 Yes 18 No

Post New Answer

More C Sharp Interview Questions

What are expressions c#?

1 Answers  


Can we inherit class that contains only one private constructor?

1 Answers  


What?s the top .NET class that everything is derived from?

7 Answers  


Why static variables are used?

1 Answers  


why do we use Overloading, Overriding, Boxing, Unboxing, and what is the use of these ?

3 Answers   eXensys,


What is web forms in c#?

1 Answers  


How does split work in c#?

1 Answers  


Explain deadlock?

1 Answers  


Is array reference type / value type ?

6 Answers   Accenture, BirlaSoft,


why C++ Partial Object Oriented Programming Language and C# and Java Fully Object Oriented Language

11 Answers   3i Infotech, Alexa, Assyst, Naresh i Technologies, TCS,


Explain async and await?

2 Answers  


What is interface inheritance in c#?

1 Answers  


Categories