List,Tuples,Dictionary

List,Tuples,Dictionary

Professional Development

19 Qs

quiz-placeholder

Similar activities

EXAMEN FINAL MODULO 02 CIRCUITOS DE VENTILACIÓN

EXAMEN FINAL MODULO 02 CIRCUITOS DE VENTILACIÓN

Professional Development

20 Qs

Quiz JPM Industry

Quiz JPM Industry

Professional Development

20 Qs

WPS Interpretation 2025

WPS Interpretation 2025

Professional Development

20 Qs

PA_Datatypes_Indentations2

PA_Datatypes_Indentations2

Professional Development

15 Qs

Python Programming Quiz-03

Python Programming Quiz-03

Professional Development

23 Qs

Mastering Python Concepts

Mastering Python Concepts

Professional Development

16 Qs

AE01 Identification of Components and Circuits

AE01 Identification of Components and Circuits

Professional Development

15 Qs

Security Hardening, Secure Boot and AD

Security Hardening, Secure Boot and AD

Professional Development

14 Qs

List,Tuples,Dictionary

List,Tuples,Dictionary

Assessment

Quiz

Engineering

Professional Development

Hard

Created by

geet s

Used 2+ times

FREE Resource

19 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Elements of a tuple can be accessed in the same way as list or string using

Indexing

Slicing

Both indexing and slicing

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

init_tuple = ('Python') * 3

print(type(init_tuple))

A. <class ‘tuple’>

B. <class ‘str’>

C. <class ‘list’>

D. <class ‘function’>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the below Python code?

a = {(1,2):1,(2,3):2}

print(a[1,2])

A. Key Error

B. {(2,3):2}

C.  1

D. {(1,2):1}

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

The code below has a Python function writing to a dictionary. What will it print in the end?

A. 1

B. 2

C. 3

D. 4

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the Python code given below?

dict = {'c': 97, 'a': 96, 'b': 98}

for _ in sorted(dict):

print (dict[_])

A. 96 98 97

B. 96 97 98

C. 98 97 96

D. NameError

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

>>colors = ["red", "green", "burnt sienna", "blue"]

>> "yellow" in colors

What is the result of the yellow in colors expression?


ValueError: 'yellow' is not in list

4

3

False

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What’s the main difference between Python lists and tuples?

Lists can hold any data type and tuples can only contain int and str objects.

Lists are immutable and tuples are mutable.

Lists are faster and tuples are slower.

Lists are mutable and tuples are immutable.

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?