2D array flashcard

2D array flashcard

Assessment

Flashcard

Computers

9th - 12th Grade

Practice Problem

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

How many columns does a have if it is created as follows int[][] a = { {2, 4, 6, 8}, {1, 2, 3, 4}};?

Back

4

2.

FLASHCARD QUESTION

Front

How would you get the value 6 out of the following array: int[][] muffinTin = { {2, 4, 6, 8}, {1, 2, 3, 4}};? Options: muffinTin[0][3], muffinTin[1][3], muffinTin[0][2], muffinTin[2][0], muffinTin[3][1]

Back

muffinTin[0][2]

3.

FLASHCARD QUESTION

Front

for (______________){

Back

int col = 0; col < cookieTray[row].length; col+=2

4.

FLASHCARD QUESTION

Front

Given the following code segment, what is the value of sum after this code executes?
int[][] m = { {1,1,1,1},{1,2,3,4},{2,2,2,2},{2,4,6,8}};
int sum = 0;
for (int k = 0; k < m.length; k++){
sum = sum + m[m.length-1-k][1]; }

Back

9

5.

FLASHCARD QUESTION

Front

How many rows does cupcakeTin have if it is created as follows:
int[][] cupcakeTin = { {2, 4, 6, 8},
{1, 2, 3, 4}};?

Back

2

6.

FLASHCARD QUESTION

Front

Which of the following statements assigns the letter S to the third row and first column of a two-dimensional array named strGrid (assuming row-major order): strGrid[0][2] = "S"; strGrid[1][3] = "S"; strGrid[3][1] = "S"; strGrid[2][0] = "S";

Back

strGrid[2][0] = "S";

7.

FLASHCARD QUESTION

Front

How would you get the value 6 out of the following array:
int[][] a = { {2, 4, 6, 8},{1, 2, 3, 4}};?

Back

a[0][2]

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?