Examveda

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

A. 1 2 3 4 5

B. 1 1 2 2 2 4 3 3 6

C. 2 3 4 5

D. None of the mentioned

Answer: Option B


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

Join The Discussion

Related Questions on Control Structures in Ruby