Multiple choice technology testing

Which tool will be used to test the flag memory leaks and unassigned pointers

  1. Dynamic analysis tool

  2. Static Analysis tool

  3. Maintenance tool

  4. Configuration tool

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

Dynamic analysis tools examine software while it's running, making them effective for detecting runtime issues like memory leaks and dangling/unassigned pointers. Static analysis examines code without execution and can identify potential issues but cannot detect actual runtime memory behavior.