Q. What is the output of the given code?
a=5
b=15
while b>a
puts a*(b-a)
while a>b
a+=1
b-=1
end
end
a=5
b=15
while b>a
puts a*(b-a)
while a>b
a+=1
b-=1
end
end
β
Correct Answer: (C)
Infinite loop