Examveda

What is the output of the given code?
counter = 1
until counter > 10
  puts counter
counter+=1 
  end

A. 1 2 3 4 5 6 7 8 9 10

B. 11 12 13 14 ... infinite loop

C. 0 1 2 3 4 5 6 7 8 9

D. None of the mentioned

Answer: Option A


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

Join The Discussion

Related Questions on Control Structures in Ruby