Ruby - Loops and Iteration
What will be the output of this Ruby code?
count = 1 until count > 3 do puts count count += 1 end
count = 1 until count > 3 do puts count count += 1 end
count > 3. Starting from 1, it prints and increments count.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions