Vidyalelo
Ruby Programming · Q56

Control Structures in Ruby

Programming · Ruby Programming · question 56

Q56

What is the output of given code? counter=1 if counter<=5 puts (counter) counter=counter+1 else puts(counter) counter=counter-1 end

A.
1, 2
B.
1,2,3,4,5
C.
1 2 1
D.
1
2
Answer

Answer: Option D

Solution

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