Q. What does the `continue` statement do in a loop?
β
Correct Answer: (A)
Skips the rest of the current iteration and moves to the next iteration
Explanation: `continue` skips current iteration but keeps the loop running.