When you inherit a protected class-level variable, who is
it available to?

Answers were Sorted based on User's Feedback



When you inherit a protected class-level variable, who is it available to?..

Answer / guest

Classes in the same namespace.

Is This Answer Correct ?    11 Yes 5 No

When you inherit a protected class-level variable, who is it available to?..

Answer / jothimani

its sub class variable

Is This Answer Correct ?    6 Yes 2 No

When you inherit a protected class-level variable, who is it available to?..

Answer / prabakar

its subclass variable

Is This Answer Correct ?    4 Yes 3 No

When you inherit a protected class-level variable, who is it available to?..

Answer / raja chandrasekaran

Protected class level variables can be accessed with in the
same class and accessed by the derived classes.Derived
classes can be in different assembly also. Even the
variables are private, it will be derived into the child
class. But the thing is, it is not accessible due to its
protection level.

Is This Answer Correct ?    6 Yes 5 No

When you inherit a protected class-level variable, who is it available to?..

Answer / p.sahoo

Protected Class Variables Are Always Inherited in it's
derived classes.
But in the namespace it confused to me because in a
namespace we can set any type of modifiers.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More C Sharp Interview Questions

How can I get around scope problems in a try/catch?

0 Answers  


What is gac? How to put assembly in gac?

0 Answers  


What can I create with c#?

0 Answers  


How big is a float?

0 Answers  


Can You Prevent Your Class From Being Inherited By Another Class?

0 Answers   Siebel Systems,


Any exceptions are there which are not caught by any catch blocks? what are they?

5 Answers   Honeywell, TCS,


What is writeline in c#?

0 Answers  


What is the Difference between directcast and ctype?

1 Answers   Wipro,


What does int32 mean?

0 Answers  


Compare and contrast between the System.Array.CopyTo() and Clone()?

0 Answers   Siebel,


Distinguish between a class and struct?

0 Answers  


Why do we use abstraction in c#?

0 Answers  


Categories