InterviewSolution
Saved Bookmarks
| 1. |
Which of the below is not a Java Profiler?(a) JVM(b) JConsole(c) JProfiler(d) Eclipse Profiler |
|
Answer» Right answer is (a) JVM The best explanation: Memory leak is like holding a strong reference to an object although it would never be needed anymore. Objects that are reachable but not live are considered memory leaks. Various tools help us to identify memory leaks. |
|