Multiple choice technology testing

The testing technique that requires devising test cases to exercise the internal logic of a software module is called?

  1. behavioral testing

  2. black-box testing

  3. grey-box testing

  4. white-box testing

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

White-box testing (also called glass-box or structural testing) examines the internal structure, code, and logic of a software module. Unlike black-box testing which focuses on inputs and outputs, white-box testing requires knowledge of the internal implementation to design test cases that cover paths, branches, and statements. Behavioral testing is a broader concept unrelated to internal logic examination.