ProgQuiz
Python Quiz
What is the output of the following code?
1
2
3
4
def add(x, y=10): return x + y print(add(5))
10
15
5
None
Go back home