What is Garbage Collection in .Net? 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 | 3 No |
Post New Answer View All Answers
Explain what is a delegate?
What is garbage collection in .net? Explain the garbage collection process?
What is reflection and what is it for?
What is the native image generator?
Explain why do we use the “using” statement?
Differences between dll and exe?
Tell us why do we use the “using” statement?
What is .net code security?
What is an assembly? What are the different types of assemblies?
Explain the main components in .net?
Write the .net syntax for 'for loop'?
What is the difference between .net and laravel?
Is .net an object oriented language? What are their components?
Explain what is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
Explain me difference between public and static modifiers?