Python Quiz

Python Quiz

University

20 Qs

quiz-placeholder

Similar activities

WINDOWS 2 ՊԱՏՈՒՀԱՆՆԵՐ

WINDOWS 2 ՊԱՏՈՒՀԱՆՆԵՐ

University

18 Qs

Komponen Jaringan & Pengkabelan

Komponen Jaringan & Pengkabelan

University

15 Qs

Python Quiz For Starters

Python Quiz For Starters

3rd Grade - Professional Development

17 Qs

DreamWeaver CS6

DreamWeaver CS6

University

20 Qs

История

История

University

20 Qs

ER MODEL

ER MODEL

University

15 Qs

Kuis Dadakan ;)

Kuis Dadakan ;)

10th Grade - University

15 Qs

POTENCIACIÓN NIVEL I

POTENCIACIÓN NIVEL I

1st Grade - University

20 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Sumit Kumar

Used 2+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be of ((500//7) % 5) ** 3?

1

2.91

0

8

71.42

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

How will you extract ‘love’ from the string S = “I love Python”? (More than one option may be correct.).


S[2:5]

S[2:6]

S[3:7]


S[-11:-7]

S[-11:-8]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you have a list L = [1, 2, 3], what will the output of L * 2 be?

[2, 4, 6]

[1, 2, 3, 1, 2, 3]

[1, 4, 9]

[[1, 2, 3], [1, 2, 3]]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you have a list L = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10]], what will the output of L[2: ] be?

[[7, 8, 9, 10]]

[7, 8, 9, 10]

[3, 4, 5, 6, 7, 8, 9, 10]

[[3], [4, 5, 6], [7, 8, 9, 10]]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you have a tuple T = (3, 5, 7, 11), what will the output of T.append(9) be?

(3, 5, 7, 9, 11)

(3, 5, 7, 11, 9)

(9, 3, 5, 7, 11)

Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be of the following code?

D = {1:['Raj', 22], 2:['Simran', 21], 3:['Rahul', 40]}

for val in D:

print(val)


1
2
3

[‘Raj’, 22]
[‘Simran’, 21]
[‘Rahul’, 40]

1 [‘Raj’, 22]
2 [‘Simran’, 21]
3 [‘Rahul’, 40]


‘Raj’
‘Simran’
‘Rahul’

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the ‘comprehension equivalent’ be for the following snippet of code?

for sentence in paragraph:

for word in sentence.split():

single_word_list.append(word)

word for sentence in paragraph for word in sentence.split()


[word for sentence in paragraph for word in sentence.split()]

word for word in sentence.split() for sentence in paragraph

[word for word in sentence.split() for sentence in paragraph]

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?