Chapter 3 Quiz: Functions 5 questions · 70% to pass 1. What keyword is used to define a function? func function def define 2. What does *args collect inside a function? Keyword arguments Positional arguments as a tuple Return values Global variables 3. A lambda function can contain multiple statements. True False 4. What happens if a function has no return statement? It raises an error It returns None It returns 0 It returns True 5. Which of the following is a valid lambda? lambda x: return x + 1 lambda x: x + 1 def lambda x: x + 1 lambda (x): x + 1 Submit Quiz Back to Chapter Back to Chapter Dashboard