Examveda

What is the output of the following code snippet?
x = 1
loop do
  puts x
  x += 1
  break if x > 5
end

A. 1 2 3 4 5

B. 1 2 3 4

C. 5 4 3 2 1

D. 1 1 1 1 1

Answer: Option A


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

Join The Discussion

Related Questions on Control Structures in Ruby