Bird
0
0

Find the mistake in this load test configuration:

medium📝 Debug Q7 of 15
Testing Fundamentals - Non-Functional Testing
Find the mistake in this load test configuration:
users = -50
duration = 30
runLoadTest(users, duration)
ADuration should be a string, not integer
BNegative number of users is invalid
CFunction runLoadTest does not exist
DNo mistake; configuration is valid
Step-by-Step Solution
Solution:
  1. Step 1: Analyze variable values

    Users count cannot be negative; -50 is invalid for load testing.
  2. Step 2: Validate other parameters and function

    Duration as integer is acceptable; function name is plausible.
  3. Final Answer:

    Negative number of users is invalid -> Option B
  4. Quick Check:

    Users count must be positive [OK]
Quick Trick: Users count must be positive integer [OK]
Common Mistakes:
  • Ignoring negative user count as error
  • Thinking duration type is wrong
  • Assuming function name error without evidence

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes