Q104
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
AnswerD.
None of the mentioned
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board