Complete the code to name the first phase of the Waterfall testing model.
phase = "[1]" # The first phase in Waterfall testing
The first phase in the Waterfall testing model is Requirements Analysis, where all requirements are gathered and understood before moving forward.
Complete the code to identify the phase where test cases are designed in Waterfall testing.
test_design_phase = "[1]" # Phase for designing test cases
The Test Design phase is where test cases and test scripts are created based on requirements and design documents.
Fix the error in the code to correctly represent the Waterfall testing model phase where actual testing happens.
current_phase = "[1]" # Phase where testing is executed
The Test Execution phase is when the actual testing of the software is performed to find defects.
Fill both blanks to complete the Waterfall testing model phases in order: first {{BLANK_1}}, then {{BLANK_2}}.
phases = ["[1]", "[2]"] # First two phases in Waterfall testing
The Waterfall testing model starts with Requirements Analysis followed by Design phase.
Fill all three blanks to complete the Waterfall testing model phases: {{BLANK_1}}, {{BLANK_2}}, and {{BLANK_3}}.
phases = ["[1]", "[2]", "[3]"] # Three main phases in Waterfall testing
The three main phases are Requirements Analysis, Implementation (coding), and Test Execution.