Arrays in Python

Arrays in Python

8th - 10th Grade

10 Qs

quiz-placeholder

Similar activities

Lists In Python_1

Lists In Python_1

9th Grade - University

15 Qs

Python list starter

Python list starter

10th Grade - University

12 Qs

Javascript Lists Lecture Knowledge Check

Javascript Lists Lecture Knowledge Check

9th - 12th Grade

11 Qs

Python Lists

Python Lists

8th - 12th Grade

15 Qs

Python List

Python List

4th Grade - University

15 Qs

Python List Operations

Python List Operations

10th Grade

13 Qs

Unit 5 -- Lists, Loops, Traversals

Unit 5 -- Lists, Loops, Traversals

9th - 12th Grade

9 Qs

List Review Quiz

List Review Quiz

9th - 12th Grade

14 Qs

Arrays in Python

Arrays in Python

Assessment

Quiz

Computers

8th - 10th Grade

Hard

Created by

D Birch

Used 18+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does Python use to store multiple objects in the same variable

Lists

Constants

Tuples

Files

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is it called when we add an object to a list

Inserting

Adding

Appending

Concatenating

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What do we use to reference an object in a list?

Length

Location

Sort Code

Index

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which number do list start at?

0

1

2

100

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is a list?

fruit = ["apples", "oranges", "bananas"]

fruit = "apples", "oranges", "bananas"

fruit = {"apples", "oranges", "bananas"}

fruit = ("apples", "oranges", "bananas")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a list called "players", if you wanted to add a player called "Bob" to the list, which of the following examples of code would be correct?
players.add("Bob")
player.append("Bob")
players.append("Bob")
players.addend("Bob")

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do i remove something from a list?

variable.append()

variable.delete()

variable.remove()

variable=(new variable)

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?