Manual Testing / Quiz
Test Design Under Fire
Boundary values, equivalence partitions, and decision tables, the techniques that find bugs on purpose instead of by luck.
- Difficulty
- Easy
- Format
- Quiz
- Points
- 100
- Estimate
- 8 min
// MISSION BRIEF
Your Mission
A field accepts ages 18-60. A discount applies to members OR orders over ₹2000. A password needs 8-64 characters.
How many test cases do you need? Which ones actually matter?
This quiz drills the three core test-design techniques, boundary value analysis, equivalence partitioning, and decision tables, using realistic inputs. Speed bonus active: sharp instincts get extra points.
// FIRST CONTACT
Battle teaser
A quantity field accepts integers 1-100. Using two-value boundary value analysis, which set of inputs tests the boundaries?
- A0, 2, 99, 101
- B-1, 0, 101, 102
- C0, 1, 100, 101
- D1, 50, 100
Answers, scoring, hints, and the full battle stay sealed.
// SKILL TAGS
test-designbvaequivalence-partitioningdecision-tables