Examveda
Examveda

What is the output of the given code?
a = 5
b=10
while a <10 && b<20
  puts a*b
  a+=2
  b+=2
  end

A. 10 20

B. 15 19 23

C. 50 84 126

D. None of the mentioned

Answer: Option C


This Question Belongs to Ruby Programming >> Operators In Ruby

Join The Discussion

Related Questions on Operators in Ruby