Python MCQ Questions Set-5
This article contains Python MCQ Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. Q1. What is the output of the following code?print(type(type()))a)Errorb)Nullc)Noned)None of the above Q2.What is the output of the following code?print(type(type))a)b)Errorc)d)None of the above Q3 What is the output of following code?class cc:def f1(self,a,b):self.a=aself.b=breturn self.a+self.bo=new cc()print(o.f1(4,4))a)8b)Errorc)4d)None of the … Read more