Q. What is the output of the following code snippet?
for i in 1..5
print i, " "
end
for i in 1..5
print i, " "
end
β
Correct Answer: (A)
1 2 3 4 5
You must be Logged in to update hint/solution