__ statement is used to skip some statement inside the loop.
●break
●Continue
●goto
●Switch
Answers
Answered by
1
Answer:
Correct option is: Continue
Continue statement is used to skip some statement inside the loop.
Explanation:
Within loops, the continue statement is utilized. When a continue statement appears inside of a loop, the control jumps to the beginning of the loop for the following iteration, skipping the execution of statements inside the loop's body for the current iteration. pause and continue clauses.
- Continue statement are used to skip certain statements inside the loop or end the loop right away without running the test expression.
- Any loop, including the for, while, and do-while loops, may contain these statements.
- One loop iteration can only be skipped using the continue statement (with or without a label reference).
- The control stays in the loop during the continue statement. To skip the rest, use the continue statement.
- For the current iteration of the loop only, the continue statement is used to skip the remaining lines of code. The loop does not end; rather, it continues with the subsequent iteration.
Similar questions