Understanding List Indexing and Slicing in Python

Understanding List Indexing and Slicing in Python

10th Grade

10 Qs

quiz-placeholder

Similar activities

List of References

List of References

9th - 12th Grade

11 Qs

Module 08 - Lists

Module 08 - Lists

10th Grade

10 Qs

CSE 1.2.4 Quiz

CSE 1.2.4 Quiz

9th - 12th Grade

10 Qs

8.2 Arrays Cambridge IGCSE 0478

8.2 Arrays Cambridge IGCSE 0478

10th Grade - University

10 Qs

C++ Arrays

C++ Arrays

8th - 12th Grade

12 Qs

Python Lists v2

Python Lists v2

9th - 12th Grade

15 Qs

Python Arrays

Python Arrays

9th - 12th Grade

13 Qs

Code.org Unit 6 - Lists

Code.org Unit 6 - Lists

9th - 12th Grade

12 Qs

Understanding List Indexing and Slicing in Python

Understanding List Indexing and Slicing in Python

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Savannah Graziano

Used 5+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the base index number for lists in Python?

None of the above

1

0

-1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the last element of a list named 'a'?

a[0]

a[last]

a[-1]

a[len(a)-1]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What error is raised if you use an index that is out of range?

ValueError

TypeError

IndexError

SyntaxError

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you slice a list 'a' from index 2 to 4 (inclusive of 2 but not 4)?

a[2,4]

a[2]-a[4]

a[2:4]

a[2:5]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does negative indexing allow you to do?

Access elements from the end of the list

None of the above

Delete elements from the list

Multiply list elements

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the slice 'a[::2]' do?

Reverses the list

Duplicates the list

Selects every second element from the list

Clears the list

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will 'a[:-1]' return?

An empty list

A copy of the list without the last element

The last element of the list

A reversed copy of the list

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?