Ruby - Loops and Iteration
What will be the output of this Ruby code?
count = 5 until count <= 0 do puts count count -= 2 end
count = 5 until count <= 0 do puts count count -= 2 end
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions