
Python Quiz-13.06.25

Quiz
•
Professional Development
•
Professional Development
•
Easy
VINUPRIYA M
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the if statement in Python?
To define a function
To declare a variable
To execute a block of code conditionally
To create a loop
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the elif statement in Python?
To handle exceptions
To create a loop
To define a function
To check additional conditions after the initial if statement
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code snippet?
x = 10
if x > 5:
print("Greater than 5")
elif x > 8:
print("Greater than 8")
else:
print("Less than or equal to 5")
Greater than 5
Greater than 8
Less than or equal to 5
No output
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code snippet?
for i in range(5):
if i == 3:
continue
print(i)
0 1 2 3 4
0 1 2 4
0 1 2
0 1 2 3
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Find the output of the following program:
li = ['Harsh', 'Pratik', 'Bob', 'Dhruv']
print (li[1][-1])
r
b
D
k
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Find the output of the following program:
a = ['Learn', 'Quiz', 'Practice', 'Contribute']
b = a
c = a[:]
b[0] = 'Code'
c[1] = 'Mcq'
count = 0
for c in (a, b, c):
if c[0] == 'Code':
count += 1
if c[1] == 'Mcq':
count += 10
print (count)
4
5
11
12
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Find the output of the following program:
def gfg(x,li=[]):
for i in range(x):
li.append(i*i)
print(li)
gfg(3,[3,2,1])
[3, 2, 1, 0, 1, 4]
[0, 1, 0, 1, 4]
[0, 1]
[ ]
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Simple Python Quiz

Quiz
•
Professional Development
7 questions
Cara Pengecekan dan Cetak Rincian Tagihan Air IPL di Realbit, se

Quiz
•
Professional Development
10 questions
AWS Booster Python Day 1

Quiz
•
Professional Development
10 questions
DAY 1 - C& C++ Assessment _10th June 24

Quiz
•
Professional Development
10 questions
Day17_Quiz_NBKR

Quiz
•
Professional Development
10 questions
Python Test 3A

Quiz
•
Professional Development
9 questions
Quiz - 2

Quiz
•
Professional Development
15 questions
C Operators

Quiz
•
University - Professi...
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade