In a function definition like: def calculate_area(radius): What is the…
2026
In a function definition like:
def calculate_area(radius):
What is the technical term for the variable radius?
- A.
Return Value
- B.
Literal
- C.
Parameter
- D.
Constant
Attempted by 178 students.
Show answer & explanation
Correct answer: C
Variables defined inside a function's parentheses, such as radius in the example, are technically called parameters. They act as placeholders for values that will be passed into the function when it is executed.