What is the output of the given code?
a = 5
b=10
while (a <10 || b<20)&&true
puts a*b
a+=2
b+=2
end
a = 5
b=10
while (a <10 || b<20)&&true
puts a*b
a+=2
b+=2
endA. 10 20
B. 50 84 126 176 234
C. -5 -5 -5
D. None of the mentioned
Answer: Option B
Related Questions on Operators in Ruby

Join The Discussion