What is Garbage Collection in .Net? Garbage collection process?

Answers were Sorted based on User's Feedback



What is Garbage Collection in .Net? Garbage collection process?..

Answer / pradeep jagadeesan

Garbage collection is a least priority thread, which will
collect unused objects from memory.

Pradeep Jagadeesan

Is This Answer Correct ?    8 Yes 1 No

What is Garbage Collection in .Net? Garbage collection process?..

Answer / guest

The process of transitively tracing through all pointers to
actively used objects in order to locate all objects that
can be referenced, and then arranging to reuse any heap
memory that was not found during this trace. The common
language runtime garbage collector also compacts the memory
that is in use to reduce the working space needed for the heap.

Is This Answer Correct ?    3 Yes 3 No

What is Garbage Collection in .Net? Garbage collection process?..

Answer / latha

Garbage collection automatically allocates memory.we forgot
to release this object.Its releases.

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More Dot Net General Interview Questions

Difference between dispose and finallize method?

0 Answers  


Define marshling?

0 Answers  


What is connection pooling and how do you make your application use it?

0 Answers  


Is string a value type or a reference type?

4 Answers  


What does stateless mean?

0 Answers   BirlaSoft,






How is .net able to support multiple languages?

0 Answers  


Explain difference between panel and groupbox classes using .net?

0 Answers  


what is yield keyword in .Net?

2 Answers  


Describe the compilation process for .net code?

0 Answers  


What is multiThreading in .NET?

0 Answers  


What is an assembly? What are the different types of assemblies?

0 Answers  


How WSDL is stored ?

1 Answers   PPS, TCS,


Categories