Bird
0
0

Which test inputs cover both techniques effectively?

hard📝 Application Q9 of 15
Testing Fundamentals - Functional Testing Techniques
A system accepts a password length between 8 and 12 characters inclusive. You want to combine boundary value analysis with equivalence partitioning. Which test inputs cover both techniques effectively?
A7, 8, 9, 11, 12, 13
B8, 10, 12
C6, 7, 13, 14
D9, 10, 11
Step-by-Step Solution
Solution:
  1. Step 1: Identify boundaries and neighbors for length 8 to 12

    Boundaries: 8 and 12; neighbors: 7 (below), 13 (above); equivalence partitions: invalid below 8, valid 8-12, invalid above 12.
  2. Step 2: Check which option covers boundaries, neighbors, and partitions

    7, 8, 9, 11, 12, 13 includes 7 (invalid below), 8 (boundary), 9, 11 (valid), 12 (boundary), 13 (invalid above), covering both techniques.
  3. Final Answer:

    7, 8, 9, 11, 12, 13 -> Option A
  4. Quick Check:

    Boundaries + neighbors + partitions = 7, 8, 9, 11, 12, 13 [OK]
Quick Trick: Combine boundaries with valid and invalid partitions [OK]
Common Mistakes:
  • Testing only boundaries without partitions
  • Ignoring invalid input partitions
  • Selecting only valid middle values

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes