2026 QUESTIONS WITH SOLUTIONS GRADED
A+
◉ header . Answer: The first line of a function definition.
◉ body . Answer: The sequence of statements inside a function
definition.
◉ function object . Answer: A value created by a function definition.
The name of the function is a variable that refers to a function object.
◉ parameter . Answer: A name used inside a function to refer to the
value passed as an argument.
◉ loop . Answer: A statement that runs one or more statements, often
repeatedly.
◉ local variable . Answer: A variable defined inside a function, and
which can only be accessed inside the function.