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

If I return out of a try/finally in c#, does the code in the finally-clause run?

0 Answers  


Is IIS is required for installing the deployment of windows C#.netapplication and to run.

2 Answers  


What debugging tools come with the .NET SDK? CorDBG

1 Answers  


Explain code compilation in c#.

0 Answers  


What is indexer c#?

0 Answers  






What is the partial class in C# What is the use of partial class in C#?

6 Answers   CTS,


what is used ref keyword in c#,and how we used it?

2 Answers  


How u call destructor and dispose methode in c#.NET

1 Answers  


Explain anonymous type in c#?

0 Answers  


How can we insert 100 records @ a time without using for loop into the databse

10 Answers   IBM,


what is the difference between passing a value object by reference and a reference object by value?

4 Answers   TCS,


Define assert() method? How does it work?

0 Answers   Siebel,


Categories