0
0
Testing Fundamentalstesting~10 mins

Test plan structure 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 section of a test plan.

Testing Fundamentals
test_plan = {
    'scope': 'Define what to test',
    'objectives': 'Set goals',
    'resources': 'List needed [1]'
}
Drag options to blanks, or click blank then click option'
Abugs
Btools
Cerrors
Dusers
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing resources with bugs or errors.
2fill in blank
medium

Complete the code to specify the test schedule in the test plan.

Testing Fundamentals
test_plan['schedule'] = 'Timeline for testing activities including [1] and deadlines'
Drag options to blanks, or click blank then click option'
Abugs
Breports
Cerrors
Dmilestones
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'bugs' or 'errors' instead of schedule markers.
3fill in blank
hard

Fix the error in the test plan section that defines test deliverables.

Testing Fundamentals
test_plan['deliverables'] = ['Test cases', 'Test reports', [1]]
Drag options to blanks, or click blank then click option'
A'Test logs'
B'Test errors'
C'Test bugs'
D'Test failures'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing deliverables with bugs or errors.
4fill in blank
hard

Fill both blanks to complete the test plan's risk management section.

Testing Fundamentals
test_plan['risk_management'] = {
    'risks': [1],
    'mitigation': [2]
}
Drag options to blanks, or click blank then click option'
A['delays', 'bugs']
B['errors', 'failures']
C['avoidance', 'reduction']
D['testing', 'reporting']
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing risks with mitigation strategies.
5fill in blank
hard

Fill all three blanks to complete the test plan's entry criteria section.

Testing Fundamentals
test_plan['entry_criteria'] = {
    'requirements_complete': [1],
    'environment_ready': [2],
    'test_data_available': [3]
}
Drag options to blanks, or click blank then click option'
ATrue
BFalse
CNone
D'Yes'
Attempts:
3 left
💡 Hint
Common Mistakes
Using False or None instead of True for criteria.