Vidyalelo
Ruby Programming · Q19

Control Structures in Ruby

Programming · Ruby Programming · question 19

Q19

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
Answer
B.
1 2 3 4
C.
5 4 3 2 1
D.
1 1 1 1 1

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board