Function Name correct answers Name of the sequence instructions in memory
Argument List correct answers The values that appear between the parentheses in a function call.
They are your instructions.
Which comes first function name or argument list? correct answers Function Name
What is an example of a built-in function? correct answers Print, int, input
Can there be more than one argument in a function? correct answers Yes
How do you define a function? correct answers Def function name(parameter list):
Indent {some body instructional code}
Return
A local variable correct answers A parameter, or a variable that is assigned a value within a
function.
Call Stack correct answers A segment of memory where the computer keeps track of function
calls.
Scope of the Variable correct answers The part of a program where a variable is visible and can
be used by the code.
/ correct answers Division (float): divides the first operand by the second
% correct answers returns the remainder
, Logical OR correct answers True if either of the operands is true
Logical NOT correct answers True if operand is false
!= correct answers Not equal to - True if operands are not equal
>= correct answers Greater than or equal to: True if left operand is greater than or equal to the
right
<= correct answers Less than or equal to: True if left operand is less than or equal to the right
** correct answers To the power of
What's included in a stack frame? correct answers 1. the point in the program at which the
function was called
(and to which it will return to when the function finishes)
2. the argument values passed to a function
(which are stored in the functions parameters variables)
3. and the other local variables of a function
(any other variables that are on the left-hand-side of an assignment statement within the function
body)
Logical AND correct answers True if both the operands are true