Search Header Logo

python MCQ

Authored by Assistant Chennai

Professional Development

Professional Development

Used 11+ times

python MCQ
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is the output of following code?

def func(n):

if(n==1):

return 1;

else:

return(n+func(n-1))

print(func(4))

A - 12

B - 10

C - 9

D - 11

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

guess the output?

def main():

try:

func()

print(''print this after function call'')

except ZeroDivisionError:

print('Divided By Zero! Not Possible! ')

except:

print('Its an Exception!')

def func():

print(1/0)

main()

‘Its an Exception!’

'Divided By Zero! Not possible!’

‘print this after function call’ followed by ‘Divided By Zero! Not Possible!’

‘print this after function call’ followed by ‘Its an Exception!’

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

predict the output?

count = 1


def doThis():


global count


for i in (1, 2, 3):

count += 1


doThis()


print (count)

4

5

3

2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is the output of following code?

sum = 0

for i in range(12,2,-2):

sum+=i

print sum

41

39

40

42

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times are the following loops executed?

i=100

while(i<=200):

print i

i+=20

20

5

6

7

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Professional Development