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

Why do we need to serialize data?

0 Answers  


What is Bubble Event ?

2 Answers   HCL,


What is parallel programming in c#?

0 Answers  


How can I create a process that is running a supplied native executable (e.g., Cmd.exe)?

0 Answers  


How many static constructors are allowed in a class?

0 Answers  






Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.

0 Answers  


Why do we need singleton class in c#?

0 Answers  


How does foreach loop work in c#?

0 Answers  


example of uniary operators and binary operators

0 Answers  


How to block a class from being inherited further?

0 Answers  


How can we acheive inheritance in VB.NET ?

2 Answers   TCS,


Advantages of c# over vb.net?

3 Answers   HCL, Syntel,


Categories