what is the output of following code?
def func(n):
if(n==1):
return 1;
else:
return(n+func(n-1))
print(func(4))
python MCQ
Quiz
•
Professional Development
•
Professional Development
•
Hard
Assistant Chennai
Used 11+ times
FREE Resource
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
10 questions
Flutter_Q5
Quiz
•
Professional Development
10 questions
Simple Easy Basic Lua Quiz
Quiz
•
4th Grade - Professio...
6 questions
Flutter_Q4
Quiz
•
Professional Development
10 questions
PreTrainingExceptions
Quiz
•
Professional Development
6 questions
Quiz on Sample Code - JavaScript
Quiz
•
Professional Development
10 questions
Python Functions
Quiz
•
Professional Development
6 questions
Java_4
Quiz
•
Professional Development
10 questions
Day 5 - Data Type and Structur
Quiz
•
Professional Development
15 questions
Multiplication Facts
Quiz
•
4th Grade
25 questions
SS Combined Advisory Quiz
Quiz
•
6th - 8th Grade
40 questions
Week 4 Student In Class Practice Set
Quiz
•
9th - 12th Grade
40 questions
SOL: ILE DNA Tech, Gen, Evol 2025
Quiz
•
9th - 12th Grade
20 questions
NC Universities (R2H)
Quiz
•
9th - 12th Grade
15 questions
June Review Quiz
Quiz
•
Professional Development
20 questions
Congruent and Similar Triangles
Quiz
•
8th Grade
25 questions
Triangle Inequalities
Quiz
•
10th - 12th Grade