medium
Single Answer
0

Fuzzing is an example of what type of code analysis?

Answer Options

A

Static analysis

B

Code review

C

Pentesting

D

Dynamic analysis

Correct Answer: D

Explanation

Fuzzing, the process of feeding unexpected and random input to programs to see how they behave, is an example of dynamic analysis where the code is actually run to test it. Static analysis involves reviewing the code, as does code review. Fuzzing is typically done as part of software testing rather than penetration testing, but it may be used by pentesters.