Q. What is the output of the given code?
for num in 1..3
puts num
for i in 1..2
puts num*i
end
end
for num in 1..3
puts num
for i in 1..2
puts num*i
end
end
β
Correct Answer: (B)
1 1 2 2 2 4 3 3 6