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

What is lazy initialization?

0 Answers  


What are the two kinds of properties.

2 Answers   Wipro,


Do you know what is lambda expressions in c#?

0 Answers  


What are the benefits of Model-View-Controller Architecture?

1 Answers  


Why do we use the “using” statement?

0 Answers  






. How .NET can support multiple languages?

1 Answers  


Explain can the validation be done in the server side? Or this can be done only in the client side?

0 Answers  


What distributed process frameworks outside .NET do you know?

1 Answers  


What is managed code execution?

0 Answers  


Explain how to produce an assembly?

0 Answers  


Explain acid properties?

1 Answers  


Explain what is the difference between web application and enterprise application?

0 Answers  


Categories