0
0
Testing Fundamentalstesting~10 mins

System testing 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 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'
Acomplete and integrated
Bindividual modules
Conly the UI
Ddatabase only
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing system testing with unit testing.
2fill in blank
medium

Complete 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'
Aunit
Bcode
Cfunctional
Ddatabase
Attempts:
3 left
💡 Hint
Common Mistakes
Thinking system testing only checks code correctness.
3fill in blank
hard

Fix 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'
Asystem
Bmodules
Cunits
Dcomponents
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing system testing with unit or integration testing.
4fill in blank
hard

Fill 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'
Afunctional
Bperformance
Cintegration
Dsecurity
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing performance or security with basic system testing steps.
5fill in blank
hard

Fill 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'
Afunctional
Bperformance
Cusability
Dsecurity
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing usability instead of security for system testing phases.