Computer Science
Which of the given argument types can be skipped from a function call ?
- positional arguments
- keyword arguments
- named arguments
- default arguments
Related Questions
What is the result of this code ?
def print_double(x): print(2 ** x) print_double(3)
- 8
- 6
- 4
- 10
What is the order of resolving scope of a name in a Python program ?
- B G E L
- L E G B
- G E B L
- L B E G
Fill in the blanks:
A _________ is a subprogram that acts on data and often returns a value.
Fill in the blanks:
Python names the top level segment (main program) as _________.