Python Quiz-13.06.25

Python Quiz-13.06.25

Professional Development

10 Qs

quiz-placeholder

Similar activities

Python LIST

Python LIST

Professional Development

10 Qs

Python Test 3A

Python Test 3A

Professional Development

10 Qs

Quiz 1 Internship

Quiz 1 Internship

Professional Development

15 Qs

day8

day8

Professional Development

10 Qs

pyhthon condition statement

pyhthon condition statement

Professional Development

10 Qs

C Operators

C Operators

University - Professional Development

15 Qs

Quiz - 2

Quiz - 2

Professional Development

9 Qs

String and List

String and List

Professional Development

14 Qs

Python Quiz-13.06.25

Python Quiz-13.06.25

Assessment

Quiz

Professional Development

Professional Development

Easy

Created by

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

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?