Q. 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= 5
b=10
while a <10 && b<20
puts a-b
a+=2
b+=2
end
β
Correct Answer: (C)
-5 -5 -5
You must be Logged in to update hint/solution