Bird
0
0

Which of the following is the correct syntax to represent boundary value test cases for an input range 10 to 20 in a test case list?

easy📝 Syntax Q3 of 15
Testing Fundamentals - Functional Testing Techniques
Which of the following is the correct syntax to represent boundary value test cases for an input range 10 to 20 in a test case list?
A[11, 13, 17, 19]
B[10, 15, 20]
C[9, 10, 11, 19, 20, 21]
D[8, 12, 18, 22]
Step-by-Step Solution
Solution:
  1. Step 1: Identify boundary values and neighbors for 10 to 20

    Boundaries: 10 and 20; neighbors: 9 (below), 11 (above), 19 (below), 21 (above).
  2. Step 2: Check which option includes boundaries and neighbors

    [9, 10, 11, 19, 20, 21] includes 9, 10, 11, 19, 20, 21 correctly.
  3. Final Answer:

    [9, 10, 11, 19, 20, 21] -> Option C
  4. Quick Check:

    Boundary values with neighbors = [9, 10, 11, 19, 20, 21] [OK]
Quick Trick: Include boundary and one value inside/outside range [OK]
Common Mistakes:
  • Missing values just outside the boundary
  • Testing only inside values
  • Using random unrelated values

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes