what is the purpose of the continue keyword?\nto skip an iteration of a loop\nto act as a placeholder within…

what is the purpose of the continue keyword?\nto skip an iteration of a loop\nto act as a placeholder within a loop\nto create a compound condition within a loop\nto end a loop

what is the purpose of the continue keyword?\nto skip an iteration of a loop\nto act as a placeholder within a loop\nto create a compound condition within a loop\nto end a loop

Answer

Brief Explanations:

In programming, the continue keyword is used to skip the current iteration of a loop and move on to the next one. It doesn't end the loop (that's break), doesn't act as a placeholder, and isn't for creating compound - conditions.

Answer:

To skip an iteration of a loop