Python MCQ Questions Set-7
Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. Q1 What is the output of following code?def fun(name,age):print(name)print(age)fun(25,”tom”)a)25 tomb)25 ‘tom’c) tom 25d)tom ‘25’ Q2. What is the output of following code?def fun(name,age):print(“name is “,name)print(“age is “,age)fun(age=25,name=”jack”)a) name is jack age is 25b) name … Read more