Multiple choice technology testing

Why Memory Analysis is used in JProbe?

  1. To identify Java garbage collection issues and object cycling issues

  2. To identify and resolve Java bottlenecks and deadlocks

  3. To identify un-executed lines of code during unit testing

  4. None

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

Memory Analysis in JProbe helps identify Java garbage collection issues (objects not being collected, memory leaks) and object cycling problems (objects being created and destroyed excessively). It's not for finding bottlenecks/deadlocks (that's Performance Analysis), identifying unexecuted code (that's Code Coverage), or is irrelevant.