CS Awesome Unit 8 Lesson 2 Traversing 2D Arrays

CS Awesome Unit 8 Lesson 2 Traversing 2D Arrays

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

4 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the intended purpose of method mystery?

Back

Identify the smallest value in the array

2.

FLASHCARD QUESTION

Front

What is order of this 2D array traversal?

Back

Row major order

3.

FLASHCARD QUESTION

Front

What determines the order of traversal in a nested for loop?

Back

the outer loop variable

4.

FLASHCARD QUESTION

Front

True or False: To change the order of traversal to column major order, a correct short cut is to simply change the order of variables from [row][col] to [col][row] in the statement "anArray[row][col]".

Back

False