What is GC (Garbage Collection) and how it works
Answer / kirti
One of the good features of the CLR is Garbage Collection, which runs in the background collecting unused object references, freeing us from having to ensure we always destroy them. In reality the time difference between you releasing the object instance and it being garbage collected is likely to be very small, since the GC is always running.
[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.]
Heap:
A portion of memory reserved for a program to use for the temporary storage of data structures whose existence or size cannot be determined until the program is running.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the request flow in asp.net mvc framework?
What is renderbody?
What are Non Action methods in ASP.Net MVC?
what is entity graph in entity framework?
what do you mean by table-per-hierarchy?
Why to use Html.Partial in ASP.Net MVC?
Is .net framework dead?
what is deferred loading(lazy loading)?
What is tracing?Where it used.Explain few methods available
mention what is csdl, ssdl and msl sections in an edmx file?
Is http stateful or stateless?
Asp.net mvc application, makes use of settings at 2 places for routing to work correctly. What are these 2 places?