Q. What is the output of the given code?
i = 3
while i > 0 do
print i
i -= 1
end
i = 3
while i > 0 do
print i
i -= 1
end
β
Correct Answer: (B)
321
You must be Logged in to update hint/solution