Python Lists, Tuples, Dictionaries, and Sets Quiz

Python Lists, Tuples, Dictionaries, and Sets Quiz

University

50 Qs

quiz-placeholder

Similar activities

MID SEMESTER ENGLISH ENGINEER

MID SEMESTER ENGLISH ENGINEER

University

50 Qs

Cuestionario 2 - PRL

Cuestionario 2 - PRL

University

45 Qs

Evaluasi Kompetensi Home Appliance

Evaluasi Kompetensi Home Appliance

12th Grade - University

50 Qs

SEMANA 12 - ADMINISTRACION DE OPERACIONE

SEMANA 12 - ADMINISTRACION DE OPERACIONE

University

54 Qs

Quiz sobre Estructura de Datos: Grafos

Quiz sobre Estructura de Datos: Grafos

University

50 Qs

SEMANA 7 LAYOUT EN ALMACENES

SEMANA 7 LAYOUT EN ALMACENES

University

54 Qs

Unit 3.2 – Pumps

Unit 3.2 – Pumps

University

47 Qs

QUIZ AKIDAH AKHLAK

QUIZ AKIDAH AKHLAK

9th Grade - University

50 Qs

Python Lists, Tuples, Dictionaries, and Sets Quiz

Python Lists, Tuples, Dictionaries, and Sets Quiz

Assessment

Quiz

Engineering

University

Medium

Created by

Vidya Bhosale

Used 1+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to create a list in Python?

list = {}

list = ()

list = []

list = <>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the first element of a list my_list?

my_list[0]

my_list[1]

my_list(-1)

my_list.first()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of len([1, 2, 3, 4])?

3

4

5

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of [1, 2, 3] + [4, 5]?

[1, 2, 3, 4, 5]

[5, 7, 8]

Error

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does my_list[1:3] do?

Returns 1st and 3rd elements

Returns a list with elements at index 1 and 2

Returns all elements except 1 and 3

Syntax error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to add an element to a list?

add()

append()

insert()

push()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of list("abc")?

"abc"

["abc"]

['a', 'b', 'c']

{'a','b','c'}

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?