Consider this code:
def multiply_numbers(num1, num2, num3):
result = num1 * num2 * num3
return result
product = multiply_numbers(2, 3, 4)
Identify the following items in that code:
| Item |
|---|
| function name |
| function arguments |
| function definition |
| function body |
| function parameters |
| function invocation |
| function return value |
| all identifiers |