Computer Science
A parameter having default value in the function header is known as a default parameter.
Python Functions
3 Likes
Answer
True
Reason — A default parameter is a parameter having default value in the function header.
Answered By
3 Likes
Related Questions
Fill in the blanks:
The default value for a parameter is defined in function _________.
Non-default arguments can be placed before or after a default argument in a function definition.
The first line of function definition that begins with keyword
def
and ends with a colon (:), is also known as function header.Variables that are listed within the parentheses of a function header are called function variables.