Python L1 Quiz 4: Lists

Python L1 Quiz 4: Lists

1st - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Python Concepts

Python Concepts

9th Grade

10 Qs

Python Arrays

Python Arrays

9th - 12th Grade

13 Qs

Python Lists v2

Python Lists v2

9th - 12th Grade

15 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

9th Grade - University

10 Qs

Python Unit  8 Quiz

Python Unit 8 Quiz

9th - 12th Grade

15 Qs

Python Revision Tour - I

Python Revision Tour - I

12th Grade

15 Qs

Dictionary in Python

Dictionary in Python

11th - 12th Grade

10 Qs

6.1 Guided Notes - Dictionary and Data Structures Quiz

6.1 Guided Notes - Dictionary and Data Structures Quiz

9th Grade

15 Qs

Python L1 Quiz 4: Lists

Python L1 Quiz 4: Lists

Assessment

Quiz

Computers

1st - 12th Grade

Medium

Created by

Jerry Xiao

Used 372+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: The index 1 identifies the first element in a list.

True

False

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: Lists can only contain integers.

True

False

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What will always be the index of the last item in a list?


(You may select multiple answers)

-0

-1

0

The size of the list minus 1

4.

MULTIPLE SELECT QUESTION

3 mins • 1 pt

Media Image

Which code will print cat?


(You may select multiple answers)

print(my_list[1])

print(my_list[2])

print(my_list[-2])

print(my_list[-3])

5.

MULTIPLE SELECT QUESTION

3 mins • 1 pt

Which index will get the first item in a list?


(You may select multiple answers)

0

1

the size of the list, as a negative number

-1

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the output of the following code?


arr = [10, 20, 30, 40, 50, 60]

print(len(arr))ㅤㅤㅤㅤㅤㅤ

0

6

5

SyntaxError

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the output of the following code?


value = [[10, 20, 30], [40, 50, 60]]

print(len(value))ㅤㅤㅤㅤㅤㅤㅤ

2

3

6

0

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?