What are the versions of garbage collection?



What are the versions of garbage collection?..

Answer / Dharmendra Kumar Pal

In ASP.NET, there are two primary versions of garbage collection: Generation Garbage Collection (GC) and Concurrent GC. Generation GC manages memory by dividing objects into generations (0, 1, 2). Newly allocated objects belong to generation 0, and as the generations age, they move up one level. Concurrent GC collects garbage concurrently with the application while it is running, improving performance.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

Way of updating a table other than stored procedure and hard coded query?

2 Answers  


What is global.asax file used for?

1 Answers  


Disable Session State at the Application Level

2 Answers  


Why do we need a web application session?

1 Answers  


How do I use a proxy server when invoking a web service?

1 Answers  


What is the result when the Web Form containing the following line is complied and executed? <asp:Button id=?thebutton? onClick=?theEvent? /> a) The button control is created; theEvent is the click event handler. b) Compiler error; the control must be set to runat=?server?. c) Compiler error; onClick is not a valid attribute. d) Runtime Exception; the control must be set to runat=?server?.

3 Answers   Syntax Softtech,


What are the different types of sessions in asp.net?

1 Answers  


Which is the parent class of the web server control?

1 Answers  


suppose i am Admin in my application and i have to terminate the session of the particular user in my application.........how can i do it....?????

1 Answers   L&T,


What are the Application_Start and Session_Start subroutines used for?

5 Answers   Siebel Systems,


What is slidemaster?

1 Answers  


Describe session handling in a webfarm?

1 Answers  


Categories