Python MCQ Questions Set-5

python-mcq

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

Python MCQ Questions Set-4

python-mcq

Here is an interesting Python MCQ Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. Q1: What will be the output of the following Python code? class A(): def disp(self): print(“A disp()”) class B(A): pass obj = B() obj.disp() a) Invalid syntax for inheritance b) Error because when an object is … Read more

Python MCQ Questions Set-1

python-mcq

This Python MCQ Questions and Answers are based on important and latest topics of Python programming. Q1: What will be the output of the following Python code? class A(): def disp(self): print(“A disp()”) class B(A): pass obj = B() obj.disp() a) Invalid syntax for inheritance b) Error because when object is created, argument must be … Read more