What is returned from the following user-defined function if you pass it the argument of 2?

Automate Cybersecurity Tasks with Python | Weekly challenge 2 Quiz | 

What is returned from the following user-defined function if you pass it the argument of 2?

def multiples(num):
multiple = num * 3
return multiple
multiples(2)
  • 6
  • 2
  • num
  • multiples

 

Leave a Comment