What are Sealed Classes in C#?

Answers were Sorted based on User's Feedback



What are Sealed Classes in C#?..

Answer / vishalsharma

sealed classes cannot be inherited.

Is This Answer Correct ?    238 Yes 13 No

What are Sealed Classes in C#?..

Answer / senthil kumar

when a class defined as sealed its not possible to inherit
its class and properties to the inherited class.Its also
applicable to the class properties.Even class defined as
public its banned to inherit the class.

Is This Answer Correct ?    126 Yes 18 No

What are Sealed Classes in C#?..

Answer / vijay rana

if we want to prevent a class to be inherited then we use
the keyword sealed,
means this class will not be inherited now

Is This Answer Correct ?    117 Yes 12 No

What are Sealed Classes in C#?..

Answer / sasi

A sealed class cannot be used as a base class. For this
reason, it cannot also be an abstract class.

Is This Answer Correct ?    83 Yes 17 No

What are Sealed Classes in C#?..

Answer / nitin kumar tomar

A Class that cannot be inherited and used by the other
classes

Is This Answer Correct ?    76 Yes 15 No

What are Sealed Classes in C#?..

Answer / hari

Above All Answers Correct

Is This Answer Correct ?    67 Yes 9 No

What are Sealed Classes in C#?..

Answer / kanchan kora

A class which restricts inheritance for security region is
called Sealed class.
Sealed class is the last class in hierarchy.
Sealed class can be a derived class but can't be a base class.
To access the members of sealed class we should create the
instance object.

Advantages of sealed class is it restrict the third party
vendor for developing new software by inheriting from our logic.

Is This Answer Correct ?    50 Yes 9 No

What are Sealed Classes in C#?..

Answer / amol

Sealed class can't be inherited by subclass.

Is This Answer Correct ?    12 Yes 1 No

What are Sealed Classes in C#?..

Answer / irfan

Sealed classes cannot be inheritted by parent class and
sealed methods cannot be ovrriden

Is This Answer Correct ?    24 Yes 18 No

What are Sealed Classes in C#?..

Answer / prabhakaran

A derived class can stop virtual inheritance

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More C Sharp Interview Questions

How to implement a singleton design pattern in c#?

0 Answers  


Explanation on Generic?

0 Answers   QuestPond,


Define acid rule of thumb for transactions in c#.

0 Answers  


What is lazy loading c#?

0 Answers  


What are the uses of namespaces?

0 Answers  






Why do we need to serialize data?

0 Answers  


How to force my .net app to run as administrator on windows 7?

0 Answers  


What is the difference between iqueryable and ienumerable?

0 Answers  


Explain the difference between user control and custom control. Also, explain their use.

0 Answers   Accenture,


Explane each and every methods of nterface Queue? Explain About performance issues on retrieving records

0 Answers   DELL,


Write the difference between TypeOf and GetType?

0 Answers   Wipro,


What is parsing?

0 Answers  


Categories