2 D Arrays

Quiz
•
Computers
•
12th Grade
•
Easy

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
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
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
Similar Resources on Wayground
10 questions
C# Programming Quiz

Quiz
•
12th Grade
10 questions
Arrays

Quiz
•
11th Grade - University
10 questions
Unit 6

Quiz
•
12th Grade
9 questions
Unit #8 Test Review

Quiz
•
9th - 12th Grade
10 questions
Quiz Javascript Basic Pertemuan 3

Quiz
•
9th - 12th Grade
5 questions
AP Computer Science Unit 6 Arrays Pt. 3

Quiz
•
10th - 12th Grade
10 questions
C++ Programming Quiz

Quiz
•
12th Grade
8 questions
JS Talks, Quiz #4

Quiz
•
1st - 12th Grade
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade