Home »
MCQs »
Python MCQs
In Python, the break and continue statements, together are called ___ statement
35. In Python, the break and continue statements, together are called ___ statement.
- Jump
- goto
- compound
- None of the mentioned above
Answer: B) goto
Explanation:
With the goto statement in Python, we are basically telling the interpreter to skip over the current line of code and directly execute another one instead of the current line of code. You must place a check mark next to the line of code that you want the interpreter to execute at this time in the section labelled "target."