2 D Arrays

2 D Arrays

12th Grade

5 Qs

quiz-placeholder

Similar activities

Arrays

Arrays

10th - 12th Grade

10 Qs

Array Intro

Array Intro

9th - 12th Grade

7 Qs

CodeHS 5.7 2D Arrays

CodeHS 5.7 2D Arrays

9th - 12th Grade

10 Qs

Programming Basics

Programming Basics

11th - 12th Grade

10 Qs

Unit 6 Computer Science Arrays

Unit 6 Computer Science Arrays

10th - 12th Grade

5 Qs

Arrays Unit 6 Computer Science

Arrays Unit 6 Computer Science

10th - 12th Grade

5 Qs

Unit 6 Comp Sci A Arrays

Unit 6 Comp Sci A Arrays

10th - 12th Grade

5 Qs

Unit 10 AP CSA

Unit 10 AP CSA

12th Grade

10 Qs

2 D Arrays

2 D Arrays

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Muhammad Noman

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Question: Given a 2D array int[][] arr = new int[3][4], what is the index of the element located in the second row and third column?

arr[2][1]

arr[1][2]

arr[2][3]

arr[3][2]

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Question: Which of the following code snippets correctly initializes a 2D array named matrix with 5 rows and 3 columns, where all elements are initially 0?

int[][] matrix = new int[3][5];

int[][] matrix = new int[5, 3];

int[][] matrix = new int[5, 3][0];

int[][] matrix = new int[5][3];

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Consider the following code:

18

27

45

81

4.

OPEN ENDED QUESTION

10 mins • 1 pt

Write a Java method named transpose that takes a 2D integer array as input and returns a new 2D array that is the transpose of the original array. The transpose of a matrix is obtained by interchanging its rows with its columns.

Example:

int[][] original = {{1, 2, 3}, {4, 5, 6}};

The transposed array should be:

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

Evaluate responses using AI:

OFF

Answer explanation

Media Image

See the image!

5.

OPEN ENDED QUESTION

10 mins • 1 pt

Given a 2D integer array representing a matrix, write a Java method named findMax that returns the maximum value contained within the matrix.

Evaluate responses using AI:

OFF

Answer explanation

Media Image