2d lists in python

2d lists in python

7th Grade

7 Qs

quiz-placeholder

Similar activities

Banana Tales Part I (1-40)

Banana Tales Part I (1-40)

6th - 8th Grade

10 Qs

HTML Basics

HTML Basics

7th - 10th Grade

10 Qs

Cell References Puzzle

Cell References Puzzle

7th - 8th Grade

10 Qs

CS Python Fundamentals Quiz 9 PRACTICE

CS Python Fundamentals Quiz 9 PRACTICE

7th Grade

9 Qs

Word Module 5 Vocabulary

Word Module 5 Vocabulary

6th - 12th Grade

10 Qs

Keyboarding Home Row Keys

Keyboarding Home Row Keys

6th - 7th Grade

11 Qs

G7 Excel Quiz 1

G7 Excel Quiz 1

7th Grade - University

10 Qs

Augmented Reality 1 (OH)

Augmented Reality 1 (OH)

6th - 8th Grade

10 Qs

2d lists in python

2d lists in python

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Janelle Yearwood

Used 43+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a 2D list in Python?

A 2D list in Python is a single list with multiple dimensions.

A 2D list in Python is a list of lists.

A 2D list in Python is a list of tuples.

A 2D list in Python is a dictionary of lists.

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is the syntax to access an element in a 2D list?

list_name(row_index)(column_index)

list_name[row_index, column_index]

list_name[row_index][column_index]

list_name[row_index][column_index]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the concept of row and column in a 2D list.

Rows go from right to left, and columns go from bottom to top in a 2D list.

Rows go from bottom to top, and columns go from left to right in a 2D list.

Rows go from left to right, and columns go from top to bottom in a 2D list.

Rows go from top to bottom, and columns go from left to right in a 2D list.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between a 1D list and a 2D list?

1D lists can only store integers, while 2D lists can store any data type.

In a 1D list, elements are arranged vertically, while in a 2D list, elements are arranged horizontally.

In a 1D list, elements are arranged in a single dimension, while in a 2D list, elements are arranged in multiple dimensions.

1D lists are used for text data, while 2D lists are used for numerical data.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can a 2D list have different lengths of sublists?

Rarely

Yes

No

Sometimes

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you add a new row to a 2D list?

my_2d_list.extend(new_row)

my_2d_list.insert(new_row)

my_2d_list.add(new_row)

my_2d_list.append(new_row)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of len(my_list) for a 2D list?

Number of rows in the 2D list

Sum of elements in the 2D list

Total elements in the 2D list

Number of columns in the 2D list