Examveda

What is the output of the given code?
i = 50 
j=55
while i > 25 && j>35 do
  puts 50*j/i
  i -= 1
  j-=2
end

A. 25 35

B. 50 55

C. Infinite loop

D. 55 54 53 52 51 50 48 47 46 45

Answer: Option B


This Question Belongs to Ruby Programming >> Control Structures In Ruby

Join The Discussion

Related Questions on Control Structures in Ruby