Multiple choice technology testing

What is an equivalance partition?

  1. A set of test cases for testing classes of objects

  2. An input or output range of values such that one valuye in the range becomes a test case

  3. An input or output range of values such that each value in the range becomes a test case

  4. An input or output range of values such that every tenth value in the range becomes a test case.

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

Equivalence partitioning divides input data into groups (partitions) that are expected to be processed similarly. The key principle is that testing one value from each partition is sufficient to find defects affecting that partition, rather than testing every possible value. This makes testing more efficient while maintaining good coverage.