Multiple choice technology testing

Which type of view is used to identify Memory Leaks?

  1. Heap View

  2. Instance View

  3. Leak Doctor View

  4. Allocation View

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Leak Doctor View is specifically designed in JProbe to help identify memory leaks by tracking object allocations, garbage collection cycles, and objects that persist longer than expected. It analyzes reference chains and helps pinpoint why objects are not being garbage collected. Heap View shows overall memory distribution, Instance View lists individual objects, and Allocation View tracks where objects were created - none specifically target leak detection like Leak Doctor.