In the program shown opposite, the line marked with an arrow will be executed.
After execution, which line will the program jump to?
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".
The ELSE of line 5 belongs to the IF of line 3.
If the program arrives at line 5, this means it was in the process of executing the THEN instructions of line 3.
The ELSE signals the end of this THEN; the program must therefore jump to the line following the corresponding END IF, i.e. to line 12 which is the end of the program.