Review the following code. Which of these statements accurately describes name?

Automate Cybersecurity Tasks with Python | Weekly challenge 2 Quiz | 

Review the following code. Which of these statements accurately describes name?

def echo(name):
return name * 3
  • It is a parameter because it is included in the function definition.
  • It is an argument because it is used in a return statement.
  • It is a parameter because it is used in a return statement.
  • It is an argument because it is included in the function call.

 

Leave a Comment