
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
10 questions
Day10_Quiz_NBKR

Quiz
•
Professional Development
10 questions
Digital Design Quiz - Round 4

Quiz
•
Professional Development
14 questions
operators in python

Quiz
•
Professional Development
14 questions
Fundamental Python

Quiz
•
Professional Development
10 questions
Quiz for Module2

Quiz
•
Professional Development
10 questions
Flutter_Q5

Quiz
•
Professional Development
10 questions
Simple Easy Basic Lua Quiz

Quiz
•
4th Grade - Professio...
10 questions
Day8_Quiz_NBKR

Quiz
•
Professional Development
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade