Vidyalelo
Ruby Programming · Q53

Operators in Ruby

Programming · Ruby Programming · question 53

Q53

What is the output of the given code? counter = 100 while counter > 0 puts counter counter-=25 end

A.
100 75 50 25
Answer
B.
100 25 5
C.
100..5
D.
None of the mentioned

Answer: Option A

Solution

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