Examveda

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

A. 1 2 3 1 2 3

B. 3 2 1 3 2 1

C. 0 1 2 3 4 5 6 7 8 9

D. None of the mentioned

Answer: Option C


This Question Belongs to Ruby Programming >> Control Structures In Ruby

Join The Discussion

Related Questions on Control Structures in Ruby