Home / Programming MCQs / Python MCQs / Question

N

Neha Sharma • 6.85K Points
Tutor III

Q. The following python program can work with ____ parameters.

Code:
def f(x):
    def f1(*args, **kwargs):
           print("Sanfoundry")
           return x(*args, **kwargs)
    return f1
(A) any number of
(B) 0
(C) 1
(D) 2

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.