Quiz: Functions and Scope
Test your understanding of Python functions, including scope, closures, lambdas, and type annotations, with these advanced questions.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What happens if a function does not contain a return statement?
A.
It returns None implicitly at the end of the block.
B.
It raises a SyntaxError because a return is required.
C.
It returns the value of the last expression evaluated.
D.
It returns False by default.
1 / 10
...