Multiple choice technology testing

Which will be useful for input and output coverage?

  1. Boundary value analysis

  2. usecase testing

  3. equivalence partioning

  4. decision table

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

Equivalence partitioning divides input domains into groups where all values in a group are expected to produce similar outputs. This technique ensures coverage of input/output ranges efficiently by testing one representative from each partition. Boundary value analysis focuses on edge cases, not overall coverage.