ASP Programming Question:
Download Job Interview Questions and Answers PDF
What is garbage collection?
Answer:
Garbage collection is a mechanism that allows the computer to detect when an object can no longer be accessed. It then automatically releases the memory used by that object (as well as calling a clean-up routine, called a "finalizer," which is written by the user). Some garbage collectors, like the one used by .NET, compact memory and therefore decrease your program's working set.
Download ASP Programming Interview Questions And Answers
PDF
Previous Question | Next Question |
What is an application domain? | How does non-deterministic garbage collection affect my code? |