Vidyalelo
Ruby Programming · Q28

Operators in Ruby

Programming · Ruby Programming · question 28

Q28

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
Answer
C.
15 16 17 18 19 20
D.
None of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board