Multiple choice technology testing

which of the following can be succesfully tested using loop testing methodology

  1. Simple loops

  2. Nested loops

  3. Concatenated loops

  4. All of the above

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

Loop testing methodology applies to all loop structures: simple loops (test 0, 1, 2 iterations, typical, max-1, max), nested loops (start with innermost at simple, then work outward), and concatenated loops (test each independently, then combined).