header bg

Scan QR code or get instant email to install app

Question:

Trixia is a software development team manager. She is concerned about memory leaks in code. What type of testing is most likely to find memory leaks?

A Static code analysis.
explanation

The right answer is to use static code analysis. Memory leaks are usually caused by failure to deallocate memory that has been allocated. A static code analyzer can check to see if all memory allocation commands ( malloc, alloc, etc.) have a matching deallocation command. Fuzzing involves entering data that is outside expected values to see how the application handles it. Stress testing involves testing how a system handles extreme workloads. Normalization is a technique for deduplicating a database.

Related Information

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

*