Python Lists

Python Lists

8th Grade

10 Qs

quiz-placeholder

Similar activities

APA 7th Edition REVIEW

APA 7th Edition REVIEW

8th Grade

11 Qs

Google Docs Quiz

Google Docs Quiz

6th - 8th Grade

15 Qs

Tech Ed - Portfolio Building

Tech Ed - Portfolio Building

7th - 11th Grade

10 Qs

Quiz 1. Data Structures (OSTIM 2022)

Quiz 1. Data Structures (OSTIM 2022)

1st - 12th Grade

12 Qs

Create a Slogan for Earth Day

Create a Slogan for Earth Day

6th - 10th Grade

10 Qs

HTML TAGS!

HTML TAGS!

8th Grade

15 Qs

Ms Word: Formatting Text & Image

Ms Word: Formatting Text & Image

1st - 12th Grade

10 Qs

Code.org: Unit 2 Lessons 6 - 9 Test

Code.org: Unit 2 Lessons 6 - 9 Test

6th - 9th Grade

14 Qs

Python Lists

Python Lists

Assessment

Quiz

Instructional Technology

8th Grade

Hard

Created by

Issam Al Salman

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the uses of a list in Python?

A data type used for representing a single value

A collection of elements that are ordered and mutable

A function used for mathematical calculations

A loop used for iterationg over sequences

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How do you create an empty list in Python?

Note: 2 choices are correct

empty_list = {}

empty_list = ()

empty_list = []

empty_list = list()

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is the correct way of accessing the first element in a list called students?

students[1]

students(1)

students.first()

students[0]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the 'append()' method do for lists?

Removes the last element from lists

Adds an element to the end of lists

Reverse the order of the elements in lists

Sorts the elements in lists

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods can be used to remove an element by its value from a list?

'remove( )'

'delete( )'

'pop( )'

'discard( )'

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you find the number of elements in a list?

size(list)

count(list)

length(list)

len(list)

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the output of the following code?

[1, 2, 3, 4]

[5, 2, 3, 4]

[1, 2, 3, 5]

[1, 5, 3, 4]

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?