Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing resources with bugs or errors.
✗ Incorrect
The 'resources' section lists the tools and people needed for testing.
2fill in blank
mediumComplete 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'bugs' or 'errors' instead of schedule markers.
✗ Incorrect
Milestones mark important points in the testing timeline.
3fill in blank
hardFix 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing deliverables with bugs or errors.
✗ Incorrect
Test logs are documents generated during testing and are part of deliverables.
4fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing risks with mitigation strategies.
✗ Incorrect
Risks include delays and bugs; mitigation means avoiding or reducing them.
5fill in blank
hardFill 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'
Attempts:
3 left
💡 Hint
Common Mistakes
Using False or None instead of True for criteria.
✗ Incorrect
Entry criteria require all conditions to be true before testing starts.