52.
How are required arguments specified in the function heading?

54.
What is tail recursion?

56.
What will be the output of the following Python code?
def f():
    global a
    print(a)
    a = "hello"
    print(a) 
a = "world" 
f()
print(a)

Read More Section(Functions in Python)

Each Section contains maximum 100 MCQs question on Functions in Python. To get more questions visit other sections.