Python Quiz-13.06.25

Python Quiz-13.06.25

Professional Development

10 Qs

quiz-placeholder

Similar activities

Supervisi Akademik

Supervisi Akademik

Professional Development

10 Qs

1 QUIZ SIMPOSIUM (10

1 QUIZ SIMPOSIUM (10

Professional Development

10 Qs

Accident Investigation

Accident Investigation

Professional Development

12 Qs

Thermocouple Test

Thermocouple Test

Professional Development

10 Qs

Pre Test - Safety & Defensive Driving

Pre Test - Safety & Defensive Driving

Professional Development

10 Qs

Payjoy

Payjoy

Professional Development

10 Qs

Empower Self & Others for Section Head

Empower Self & Others for Section Head

Professional Development

15 Qs

Perform Online Collaboration A

Perform Online Collaboration A

Professional Development

12 Qs

Python Quiz-13.06.25

Python Quiz-13.06.25

Assessment

Quiz

Professional Development

Professional Development

Practice Problem

Easy

Created by

VINUPRIYA M

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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]

[ ]

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