Tell me about the internal working of Garbage collector?
Answer Posted / kanth
The main objective of GC is Memory Management....
Gc wil take initiative when ever the application meemory is
low...we hav Finalize() method which runs implicitly...and
Dispose() method which we hav to kal Explicity....
Gc identifies the unused objects with reference counting
concept.
Finalize() method runs implicitly and free the resources if
the object havin no references...in the case of Dispose()
method it wont mind if the reference r ther.....
Gc maintain 4 Generation...start with 0 ..ends with 3
if GC released the resources using
Finalize method() still u can get the object..coz dis
method havin backup...it stores in generation0-3
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Is it possible to unit test an mvc application without running the controllers in an asp.net process?
What are the main features of asp.net mvc 4 used by asp.net web api?
What is the role of the jit compiler in .net framework?
what is minimum requirement for entity framework applications to run?
Is the following route definition a valid route definition? {controller}{action}/{id}
What is .net architecture?
Explain tempdata in asp.net mvc?
What are the 2 ways of adding constraints to a route?
Is dapper faster than entity framework?
Why should we go for entity framework?
How to Create an Intranet Site Using ASP.NET MVC?
What is conceptual model? : Entity framework
What is difference between razor and web form engine?
What are the main components of .net framework?
What is definingquery in entity framework? : Entity framework