CBSE Class 12 Computer Science Question 41 of 101

Functions — Question 9

Back to all questions
9
Question

Question 9

Write the term suitable for the following descriptions:

(a) A name inside the parentheses of a function header that can receive a value.

(b) An argument passed to a specific parameter using the parameter name.

(c) A value passed to a function parameter.

(d) A value assigned to a parameter name in the function call.

(e) A name defined outside all function definitions.

(f) A variable created inside a function body.

Answer

(a) Parameter

(b) Keyword argument

(c) Argument

(d) Keyword argument

(e) Global variable

(f) Local variable