PYTHON DATA STRUCTURES

PYTHON DATA STRUCTURES

University

15 Qs

quiz-placeholder

Similar activities

Season 4 #Spaic Python Weekly Quiz

Season 4 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Programming Fundamentals

Programming Fundamentals

KG - University

20 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

Python set 3

Python set 3

University

10 Qs

MIDTERM EXAM

MIDTERM EXAM

University

18 Qs

Tech quiz Round 1

Tech quiz Round 1

University

15 Qs

Quis Pyhton

Quis Pyhton

University

17 Qs

Python Quiz

Python Quiz

University

15 Qs

PYTHON DATA STRUCTURES

PYTHON DATA STRUCTURES

Assessment

Quiz

Other

University

Hard

Created by

Arjun Kulshrestha

Used 14+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_list = [1, 2, 3, 4, "This is a String", "1"]

print(my_list[2])

What will be the output of the above code?

3

4

Error

This is a String

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_tuple = (5, 10, 15, 20)

print(len(my_tuple))

What will be the output of the above code?

4

10

15

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_dict = {"apple": 3, "banana": 5, "orange": 2}

print(my_dict["banana"])

What will be the output of the above code?

3

5

2

"banana"

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_set = {1, 2, 3, 4, 5}

my_set.add(6)

print(my_set)

What will be the output of the above code?

a) {1, 2, 3, 4, 5, 6}

b) {1, 2, 3, 4, 5}

{6}

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_list = [1, 2, 3, 4, 5]

my_list.remove(3)

print(my_list)

a) [1, 2, 4, 5]

b) [1, 2, 3, 4, 5]

c) [1, 2, 4]

d) Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_tuple = (10, 20, 30, 40, 50)

print(my_tuple[-2])

What will be the output of the above code?

30

40

20

50

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

my_dict = {"apple": 3, "banana": 5, "orange": 2}

print("grape" in my_dict)

What will be the output of the above code?

"grape"

False

True

Error

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?