0
0
Testing Fundamentalstesting~10 mins

Performance test planning in Testing Fundamentals - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to define the main goal of performance testing.

Testing Fundamentals
performance_goal = "Ensure the system can handle [1] users simultaneously without slowing down."
Drag options to blanks, or click blank then click option'
A1000
Bmany
Cfew
Done
Attempts:
3 left
💡 Hint
Common Mistakes
Using vague terms like 'many' instead of a number.
2fill in blank
medium

Complete the code to select the right metric for response time measurement.

Testing Fundamentals
response_time_metric = "[1]"
Drag options to blanks, or click blank then click option'
ACPU usage
BMilliseconds
CNumber of users
DDisk space
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing unrelated metrics like CPU usage or disk space.
3fill in blank
hard

Fix the error in the test plan step to correctly identify the load type.

Testing Fundamentals
load_type = "[1]"  # Type of load to simulate during the test
Drag options to blanks, or click blank then click option'
Aintegration
Bfunctional
Cstress
Dunit
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing functional tests with load types.
4fill in blank
hard

Fill both blanks to define the test environment and tool used.

Testing Fundamentals
test_environment = "[1]"
test_tool = "[2]"
Drag options to blanks, or click blank then click option'
Aproduction
BJMeter
Cdevelopment
DSelenium
Attempts:
3 left
💡 Hint
Common Mistakes
Using production environment or Selenium for performance tests.
5fill in blank
hard

Fill all three blanks to complete the performance test plan snippet.

Testing Fundamentals
test_plan = {
  "users": [1],
  "duration": "[2]",
  "expected_response_time_ms": [3]
}
Drag options to blanks, or click blank then click option'
A500
B30m
C200
D1000
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up duration format or unrealistic response times.