Concept:Loop control statements decide what happens during each round of a loop.
Explanation:Sometimes, you need to skip the rest of the current iteration without ending the whole loop.
In most programming languages, the
continue statement performs this action.
When the program meets
continue, it stops running the remaining statements in the current loop body.
The loop then moves straight to the next iteration.
For example, to print only
1,3,5 from a loop counting
1 to
5, you can use
continue to skip even numbers.
The loop still runs through every number, but only the desired values are processed.
The other options are not the correct standard keywords for this task.
A jump statement sends control elsewhere in the program, not to the next loop round.
Skip statement is not a recognised loop-control keyword in common languages.
Next statement is not used generally to start the following iteration in mainstream languages like C, Java, or Python.
Answer:C. Continue statement