In the program shown opposite, the line marked with an arrow will be executed.
After execution, which line will the program jump to?
Note: the condition "Test 111" will give a FALSE result.
Click on the button corresponding to the line the program will jump to after execution of the line marked with an arrow. Then click on "Check my answer".
Line 3 is a conditional control structure, and the result of the condition test will have an effect on the rest of the program.
In this case, since the test result is FALSE, there will be a line break.
Since ELSE exists, the program will jump to the line following the corresponding ELSE, i.e. to line 6..