Examveda

What is the output of the given code?
a=5
b=15
while b>a
puts a*(b-a)
while a>b
  a+=1
  b-=1
end
end

A. 5..15

B. 50

C. Infinite loop

D. 5 50

Answer: Option C


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

Join The Discussion

Related Questions on Control Structures in Ruby