Multiple choice technology testing

The benefits of glass box testing are

  1. Focused Testing, Testing coverage, control flow

  2. Data integrity, Internal boundaries, algorithm specific testing

  3. Both A and B

  4. Either A or B

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

Glass box testing (white box testing) provides three key benefits: focused testing on specific code paths or modules, measurable test coverage through code analysis, and visibility into control flow structures including decision points and branches. By seeing inside the code, testers can target areas that black box testing might miss, ensure all logic paths are exercised, and verify internal correctness rather than just input-output behavior.