Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to define system testing as testing the complete and integrated software.
Testing Fundamentals
def system_testing(): '''System testing tests the [1] software as a whole.''' pass
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing system testing with unit testing.
✗ Incorrect
System testing means testing the complete and integrated software, not just parts.
2fill in blank
mediumComplete the code to show system testing verifies {{BLANK_1}} requirements.
Testing Fundamentals
def verify_system(): '''System testing verifies the [1] requirements.''' pass
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Thinking system testing only checks code correctness.
✗ Incorrect
System testing verifies functional requirements of the software.
3fill in blank
hardFix the error in the test case description for system testing.
Testing Fundamentals
test_case_description = 'Test the [1] as a whole during system testing.'
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing system testing with unit or integration testing.
✗ Incorrect
System testing tests the whole system, not individual modules or units.
4fill in blank
hardFill both blanks to complete the system testing checklist.
Testing Fundamentals
checklist = ['Verify [1] requirements', 'Check [2] between modules']
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing performance or security with basic system testing steps.
✗ Incorrect
System testing verifies functional requirements and integration between modules.
5fill in blank
hardFill all three blanks to complete the system testing phases.
Testing Fundamentals
phases = ['[1] testing', '[2] testing', '[3] testing']
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing usability instead of security for system testing phases.
✗ Incorrect
System testing phases include functional, performance, and security testing.