using drag and drop, match each loop - based keyword with a situation in which the keyword is used. continue…

using drag and drop, match each loop - based keyword with a situation in which the keyword is used. continue pass break to stop a loop to skip an iteration of a loop to serve as a placeholder for code

using drag and drop, match each loop - based keyword with a situation in which the keyword is used. continue pass break to stop a loop to skip an iteration of a loop to serve as a placeholder for code

Answer

Brief Explanations:

In programming, the "Break" keyword stops a loop prematurely. The "Continue" keyword skips the current iteration of a loop and moves to the next one. The "Pass" keyword is a null operation and serves as a placeholder for code that will be added later.

Answer:

Continue - To skip an iteration of a loop Pass - To serve as a placeholder for code Break - To stop a loop