Search Header Logo
Two-Dimensional Lists

Two-Dimensional Lists

Assessment

Presentation

Computers

9th - 10th Grade

Practice Problem

Medium

Created by

Calum Gordon

Used 16+ times

FREE Resource

10 Slides • 14 Questions

1

Two-Dimensional Lists

Data structures in two dimensions

media

2

media

3

media

4

Multiple Select

Question image

In this lesson I am going to learn to ... ?

1

Define array and list

2

State characteristics of 1D and 2D data structures

3

Use indexing to access elements of a 2D data structure

4

Use nested loops to iterate over a 2D data structure

5

media

6

Multiple Choice

An array is a data _______ that allows you to store ________ values under a single __________

1

structure

multiple

identifier

2

container

data

name

3

type

integer

variable

4

structure

single

name

7

Fill in the Blank

Question image

What item is stored at list[8]?

8

Fill in the Blank

Question image

How would you access the number 12 in this list?

9

media

10

media

11

Fill in the Blank

Question image

What item is stored at table[2][1]?

12

Multiple Choice

Question image

How would access the number 34 in this table?

1

table[2][3]

2

table[3][2]

3

table[4][3]

4

table[3][3]

13

media

14

Multiple Select

Which of these statements correctly assign a 2-D list?

1

numbers = [[1,2,3],[4,5,6],[7,8,9]]

2

numbers = [1,2,3,4,5,6,7,8,9]

3

numbers = [[1],[2],[3]]

4

numbers = [[1,2,3],4,5,6,[7,8,9]]

15

media

16

Multiple Choice

Question image

Which iteration would successfully display all the items in the table list displayed in a tabular format?

1
2
3

17

media

18

Multiple Choice

What would be displayed by:


print(classData[3][0])

1

°Daisy"

2

"Charley"

3

0.89

4

1

19

Multiple Choice

Question image

Which statement would display 0.93?

1

print(classData[2][3])

2

print(classData[3][2])

3

print(classData[3][4])

4

print(classData[4][3])

20

media

21

Multiple Select

Question image

In this lesson I have learned to ...

1

Define array and list

2

GIve characteristics of 1D and 2D data structures

3

Use indexing to access items in a 2D data sructure

4

Use a for loop to iterate over a 2D data structure

22

Open Ended

Question image

Thinking Hard

Write your own exam question based on today’s lessons.

Answer it.

(press Shift+Enter to take a new line ...)

23

Poll

How well have you understood the content of this lesson?

None of it

Some of it

Most of it

All of it

24

Poll

Question image

How much of this lesson have you understood?

None of it

Some of it

Most of it

All of it

Two-Dimensional Lists

Data structures in two dimensions

media

Show answer

Auto Play

Slide 1 / 24

SLIDE