What is the output of the given code?
counter = 100
while counter > 0
puts counter
counter/=5
end
counter = 100
while counter > 0
puts counter
counter/=5
endA. 100 20 4
B. 100 20 5
C. 100..5
D. None of the mentioned
Answer: Option A
Related Questions on Operators in Ruby

Join The Discussion