| Question | Answer | % Correct |
|---|---|---|
| Which of these function parameter types is mutable? | list | 76%
|
| Which of these is not a built-in exception? | DataError | 59%
|
| What's the correct form of the decorator for a class method? | @classmethod | 45%
|
| What does `functools.partial` do? | Returns a partially-applied version of the supplied function | 44%
|
| What will be the result of running this code? `{}.get("x")` | None | 38%
|
| Which of these is not a well-known Python web framework? | Python.NET | 36%
|
| What was the original working name of Python 3? | Python 3000 | 29%
|
| In the Python interpreter, how do you get a list of all the local variables? | dir() | 22%
|
| Which of these is not a method of `int` objects? | hex | 15%
|
| What's the result of this code? `set(1, 1, 2, 2, 3)` | TypeError | 8%
|