What is Garbage Collection in .Net and what is the Garbage
collection process?
Answer Posted / dotnetkal
A Garbage collector is actual used to collect the objects and save under it . In tht objects we are going to have unused objects and using objects.the process is to do Memory management . Garbage Collector GC is divided into three generations. each generation will store objects.
GEN3>GEN2>GEN1
when ever Gen1 Is filled and no space for new object .it will clean up by itself and delete all the un used objects .. the objects tht are currently used are going To shifted into GEN2 so the process is repeated for all the Generations.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain about the features and elements present in Visual studio.NET IDE?
What versions of .net are there?
How will you register com+ services?
What are asp.net authentication providers and iis security?
What’s different between process and application in .net?
Can you edit data in repeater control? How?
Explain security measures exist for .net remoting in system.runtime.remoting?
What are the purposes of using .net?
Example from .net. Integer & struct are value types or reference types in .net?
Can you explain what do you understand about web service?
How can you assign an rgb color to a system.drawing.color object?
What is the purpose of enumerable class in .net?
Explain the difference between public and static modifiers?
Explain me what is the .net framework and how does it work?
Explain can the validation be done in the server side? Or this can be done only in the client side?