AP CSA 2D Arrays (8.1)

AP CSA 2D Arrays (8.1)

10th Grade

5 Qs

quiz-placeholder

Similar activities

Strings

Strings

10th - 11th Grade

10 Qs

Arrays

Arrays

KG - University

10 Qs

F3 CL Python Ch01

F3 CL Python Ch01

1st - 12th Grade

10 Qs

AP CSA 2D Array

AP CSA 2D Array

10th Grade

5 Qs

Programming - Data Types

Programming - Data Types

1st - 10th Grade

10 Qs

PF Unit 9

PF Unit 9

9th Grade - University

10 Qs

Python: Functions and Parameters

Python: Functions and Parameters

9th - 12th Grade

10 Qs

Arrays Review 1

Arrays Review 1

10th - 12th Grade

7 Qs

AP CSA 2D Arrays (8.1)

AP CSA 2D Arrays (8.1)

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Herman Galioulline

Used 20+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

new String[][] things

new(String[][]) things

String[] String[] things

String[][] things

[][]String things

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

keyboard[12] + keyboard[5] + keyboard[4]

keyboard[13] + keyboard[6] + keyboard[5]

keyboard[2][2] + keyboard[1][0] + keyboard[0][4]

keyboard[2][2] + keyboard[0][1] + keyboard[4][0]

keyboard[3][3] + keyboard[2][1] + keyboard[1][5]

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

I only

II only

III only

I and III

II and III

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

boolean arr[][] = new boolean[2][3];

arr[0][1] = true;

arr[1][2] = true;

boolean arr[][] = new boolean[2][3];

arr[1][2] = true;

arr[2][3] = true;

boolean arr[][] = new boolean[3][2];

arr[0][1] = true;

arr[1][2] = true;

boolean arr[][] = new boolean[3][2];

arr[1][0] = true;

arr[2][1] = true;

boolean arr[][] = new boolean[3][2];

arr[2][1] = true;

arr[3][2] = true;

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

{{0, 1, 2}, {4, 5, 6}, {8, 3, 6}}

{{1, 2, 3}, {3, 4, 5}, {5, 6, 7}}

{{1, 3, 5}, {2, 4, 6}, {3, 5, 7}}

{{2, 1, 4}, {5, 2, 3}, {2, 7, 6}}

{{2, 4, 6}, {1, 3, 5}, {6, 4, 2}}