

InterviewSolution
Saved Bookmarks
1. |
How many keyword arguments can be passed to a function in a single function call?(a) zero(b) one(c) zero or more(d) one or more |
Answer» Correct option is (c) zero or more Explanation: Zero keyword arguments may be passed if all the arguments have default values. |
|