✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of following program?
value = 10
def add_numbers(a, b):
if value < 100:
return 0
else:
return a + b
x = add_numbers(1, 2)
print(x)