Multiple choice technology programming languages

Within a loop, which operator jumps to the end of the loop but does not exit the loop?

  1. next

  2. last

  3. redo

  4. leave

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The next operator in Perl jumps to the end of the current loop iteration and continues with the next iteration. In contrast, last exits the loop entirely, and redo restarts the current iteration.