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
C# Programming 2

Quiz
•
12th Grade
10 questions
NumPy and Pandas Quiz

Quiz
•
12th Grade
8 questions
Basics of JavaScript

Quiz
•
12th Grade
8 questions
Basics of C Quiz

Quiz
•
9th - 12th Grade
10 questions
Programming basics

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

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

Quiz
•
1st - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade