Home / Report Question

Q. 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

Correct Answer: C