Python Lists Quiz

Python Lists Quiz

University

10 Qs

quiz-placeholder

Similar activities

Python Round 2

Python Round 2

University

10 Qs

Python Variables

Python Variables

University

15 Qs

Basic python

Basic python

University

10 Qs

Techno India University Python Quiz Contest

Techno India University Python Quiz Contest

University

10 Qs

Pyflask2020

Pyflask2020

KG - Professional Development

10 Qs

Python функциялары  7 сынып

Python функциялары 7 сынып

12th Grade - University

15 Qs

Python Basics

Python Basics

University

15 Qs

SCRIPTING PROGRAMMING WITH PYTHON

SCRIPTING PROGRAMMING WITH PYTHON

University

15 Qs

Python Lists Quiz

Python Lists Quiz

Assessment

Quiz

Computers

University

Easy

Created by

Sherif Abdelhamid

Used 22+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax for creating a list in Python?

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

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

my_list = [1 2 3 4 5]

my_list = (1, 2, 3, 4, 5)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the first element of a list in Python?

list_name[0]

list_name[1]

list_name[first]

list_name[-1]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method is used to add an element to the end of a list in Python?

append()

insert()

remove()

extend()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

[1, 2, 3, 4, 5]

[5, 7, 9, 11]

[1, 2, 3, 9, 10, 11]

[1, 2, 3, 4, 5, 6]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the term for a list within another list in Python?

Sub list

Nested list

Listception

Double list

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the last element of a list in Python?

list_name[-1]

list_name.last

list_name[last]

list_name(1)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is a list in Python mutable or immutable?

fixed

mutable

dynamic

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?