What is returned from the following user-defined function if you pass it the arguments 2 and 3?

Automate Cybersecurity Tasks with Python | Weekly challenge 2 Quiz | 

What is returned from the following user-defined function if you pass it the arguments 2 and 3?

def add(num1, num2):
result = num1 + num2
return result
add(2, 3)
  • 5
  • 1
  • 2
  • 3

 

Leave a Comment