Examveda
Examveda

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

A. 100 75 50 25

B. 100 25 5

C. 100..5

D. None of the mentioned

Answer: Option A


This Question Belongs to Ruby Programming >> Operators In Ruby

Join The Discussion

Related Questions on Operators in Ruby