What is Garbage Collection in .Net and what is the Garbage
collection process?
Answer Posted / 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 | 4 No |
Post New Answer View All Answers
Explain me what is a design pattern and what is it for?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
what user controls are and what server controls are and the differences between the two.
What are two different types of remote object creation mode in .net?
Explain the difference between asp.net and asp?
What is Event - Delegate? clear syntax for writing a event delegate
What is meant by localization?
How does linq work?
Explain what is reflection in microsoft .net context?
Explain what is the difference between web application and enterprise application?
Explain the difference between asp.net & vb.net and explain architecture?
What is .net3.0 and .net3.5?
Where does the gac exist ?
Do I have any control over the garbage collection algorithm?
What is garbage collection in .net? Explain the garbage collection process?