Q. What is the output of the given code?
i = 3
while i > 0 do
puts i
i -= 1
end
j = 3
until j == 0 do
puts j
j -= 1
end
i = 3
while i > 0 do
puts i
i -= 1
end
j = 3
until j == 0 do
puts j
j -= 1
end
β
Correct Answer: (C)
0 1 2 3 4 5 6 7 8 9