Ruby - Loops and Iteration
Which of the following is the correct syntax to skip the current iteration in a Ruby loop?
next is used in Ruby to skip the rest of the current loop iteration and move to the next one.break stops the loop, redo repeats the current iteration, and skip is not a Ruby keyword.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions