Question 418: What will be the result of the following code snippet?def add_numbers(a, b):
return a + b
result = add_numbers(3, 7)
print(result)
tcs
wipro
infosys
general
aptitude
functions
python-programming
The functionadd_numbersadds the values ofaandb(3 + 7), resulting in 10.