Examveda
Examveda

What is the output of the given code?
counter = -50
while counter <0
  puts counter
  counter+=10
  end

A. 100 75 50 25

B. -50 -40 -30 -20 -10

C. 100..5

D. None of the mentioned

Answer: Option B


This Question Belongs to Ruby Programming >> Operators In Ruby

Join The Discussion

Related Questions on Operators in Ruby