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?
Answer: C. Parameter — Variables defined inside a function's parentheses, such as radius in the example, are technically called parameters. They act as placeholders for values that…
- A.
Return Value
- B.
Literal
- C.
Parameter
- D.
Constant
Attempted by 447 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.
Explore the full course: Bihar Stet Paper Ii Computer Science
Loading lesson…