Question 1: Python Functions - Default Arguments
What will be the output of the following code?
Question 2: Python Functions - Built-in len()
What does len("Python") return?
Question 3: Python Functions - Return Statement
What will be the output?
Question 4: Python Functions - Keyword Arguments
Which function call is valid for the following definition?
Question 5: Python Functions - Scope of Variables
What will be the output?
Question 6: Python Functions - Built-in max()
What will max([3, 7, 2, 9, 5]) return?
Question 7: Python Functions - Anonymous Functions
Which of the following correctly defines a lambda function to double a number?
Question 8: Python Functions - Built-in map()
What will be the output?
Question 9: Python Functions - Recursive Function
What will be the output?
Question 10: Python Functions - *args Usage
What will be the output?