InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Garbage Collection used in Java? |
|
Answer» It is the process through which JAVA programs perform MEMORY management. When the Java programs run on JVM, objects get created in a part of the memory that is dedicated to program. When objects are no LONGER needed, the garbage collector finds and DELETES them to free up program memory. |
|