Bird
0
0

Which of the following is the correct syntax to represent an equivalence partition for input values between 10 and 20?

easy📝 Conceptual Q3 of 15
Testing Fundamentals - Functional Testing Techniques
Which of the following is the correct syntax to represent an equivalence partition for input values between 10 and 20?
A[10, 20]
B(10, 20)
C{10, 20}
D<10, 20>
Step-by-Step Solution
Solution:
  1. Step 1: Understand notation for inclusive ranges

    Square brackets [ ] denote inclusive ranges including boundary values.
  2. Step 2: Match notation to options

    [10, 20] uses [10, 20] which means values from 10 to 20 inclusive, correct for equivalence partition.
  3. Final Answer:

    [10, 20] -> Option A
  4. Quick Check:

    Inclusive range uses square brackets [OK]
Quick Trick: Use [ ] for inclusive ranges in equivalence partitions [OK]
Common Mistakes:
  • Using parentheses which exclude boundaries
  • Confusing set notation with range notation
  • Using angle brackets which are not standard

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes