thinkinterview » interview questions » .NET
« Previous

.NET Interview Questions

next »
question What is automatic garbage collection (GC) in .NET Framework?
  • 1. CLR collect all the objects from memory which throws exceptions.
  • 2. Garbage Collection (GC) is a CLR feature which automatically release the objects from memory which are no longer in use.
  • 3. Garbage Collection (GC) is a non-deterministic means we can not assume when CLR will start collecting the unused object.
  • 4. Garbage Collection (GC) is a one of the data structure collection in .NET Framework.

Next Queston » Abstract class vs Interface...
Abstract class vs Interfa... View full queston »

Posted in: .NET(40) |