Q. What is the output of the given code?
a=5
b=15
while a&&b
puts a+b
end
a=5
b=15
while a&&b
puts a+b
end
β
Correct Answer: (C)
Infinite loop
You must be Logged in to update hint/solution