PYTHON DATA STRUCTURES

PYTHON DATA STRUCTURES

University

15 Qs

quiz-placeholder

Similar activities

KNOWLEDGE GAME

KNOWLEDGE GAME

University

11 Qs

IEEE Coding Competition

IEEE Coding Competition

University

13 Qs

Intro to Python Programming Quiz 9C

Intro to Python Programming Quiz 9C

10th Grade - University

12 Qs

Quis Pyhton

Quis Pyhton

University

17 Qs

python set 1

python set 1

University

10 Qs

Programming Fundamentals

Programming Fundamentals

KG - University

20 Qs

MIDTERM EXAM

MIDTERM EXAM

University

18 Qs

DFC 10042 PROBLEM SOLVING AND PROGRAM DESIGN

DFC 10042 PROBLEM SOLVING AND PROGRAM DESIGN

University

10 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?