InterviewSolution
Saved Bookmarks
| 1. |
What Is Garbage Collection ? |
|
Answer» The AUTOMATIC DETECTION and freeing of memory that is no longer in use. The Java RUNTIME system PERFORMS garbage collection so that programmers never EXPLICITLY free objects. The automatic detection and freeing of memory that is no longer in use. The Java runtime system performs garbage collection so that programmers never explicitly free objects. |
|