InterviewSolution
Saved Bookmarks
| 1. |
Which of the below is not a memory leak solution?(a) Code changes(b) JVM parameter tuning(c) Process restart(d) GC parameter tuningThe question was posed to me during an online exam.This is a very interesting question from Heap and Garbage Collection in chapter Classes and Methods of Java |
|
Answer» CORRECT choice is (c) Process RESTART The explanation: Process restart is not a PERMANENT fix to MEMORY LEAK problem. The problem will resurge again. |
|