Multiple choice technology testing

What is testing without executing the code?

  1. Non-functional testing.

  2. Structure-based testing (white box).

  3. Static testing.

  4. Functional testing (black box).

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

Static testing is the practice of testing software without executing the code. This includes reviews, inspections, walkthroughs, and static analysis tools. Options A and D refer to types of dynamic testing (where code runs), while option B (white-box testing) requires code execution to examine internal structure.