0
0
Testing Fundamentalstesting~10 mins

Waterfall testing model 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 name the first phase of the Waterfall testing model.

Testing Fundamentals
phase = "[1]"  # The first phase in Waterfall testing
Drag options to blanks, or click blank then click option'
ADeployment
BCoding
CMaintenance
DRequirements Analysis
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Coding' as the first phase.
Confusing 'Deployment' with the start of the process.
2fill in blank
medium

Complete the code to identify the phase where test cases are designed in Waterfall testing.

Testing Fundamentals
test_design_phase = "[1]"  # Phase for designing test cases
Drag options to blanks, or click blank then click option'
ARequirements Gathering
BTest Planning
CTest Design
DImplementation
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting 'Implementation' which is about coding.
Confusing 'Test Planning' with test case creation.
3fill in blank
hard

Fix the error in the code to correctly represent the Waterfall testing model phase where actual testing happens.

Testing Fundamentals
current_phase = "[1]"  # Phase where testing is executed
Drag options to blanks, or click blank then click option'
ATest Execution
BRequirements Analysis
CDeployment
DMaintenance
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'Deployment' which is after testing.
Selecting 'Maintenance' which is after release.
4fill in blank
hard

Fill both blanks to complete the Waterfall testing model phases in order: first {{BLANK_1}}, then {{BLANK_2}}.

Testing Fundamentals
phases = ["[1]", "[2]"]  # First two phases in Waterfall testing
Drag options to blanks, or click blank then click option'
ARequirements Analysis
BTest Execution
CDesign
DMaintenance
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of phases.
Choosing 'Test Execution' too early.
5fill in blank
hard

Fill all three blanks to complete the Waterfall testing model phases: {{BLANK_1}}, {{BLANK_2}}, and {{BLANK_3}}.

Testing Fundamentals
phases = ["[1]", "[2]", "[3]"]  # Three main phases in Waterfall testing
Drag options to blanks, or click blank then click option'
ATest Planning
BImplementation
CTest Execution
DRequirements Analysis
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 'Test Planning' with 'Implementation'.
Putting 'Test Execution' before coding.