Search Header Logo

2 D Arrays

Authored by Muhammad Noman

Computers

12th Grade

Used 1+ times

2 D Arrays
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

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?