
AL-Two-Dimensional Array
Authored by Arasaka Teacher
Computers
9th - 12th Grade
Used 3+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
13 questions
Show all answers
1.
FILL IN THE BLANK QUESTION
3 mins • 1 pt
Modify the top-right element of a 2D array to 1:
public class TwoDArrayOperations {
public static int[][] changeTopRight(int[][] arr) {
// Modify the top - right element to 1
return arr;
}
2.
DRAG AND DROP QUESTION
1 min • 1 pt
Calculate the sum of all even numbers in a 2D array
public static int sumEvenNumbers(int[][] arr) {
int sum = 0;
(a) {
(b) {
// 填写代码...
(c) {
(d) ;
}
}
}
return sum;}
3.
FILL IN THE BLANK QUESTION
3 mins • 2 pts
Find the maximum value in a 2D array
// 3. Count the number of all odd numbers in a 2D array
public static int countOddNumbers(int[][] arr) {
int count = 0;
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
______
{
_____
}
}
}
return count;
}
Answer explanation
countOddNumbers: Iterates through each element of the 2D array and checks if it is odd. If it is, increments the count.
countOddNumbers: Iterates through each element of the 2D array and checks if it is odd. If it is, increments the count.
4.
FILL IN THE BLANK QUESTION
1 min • 2 pts
// 4. Calculate the sum of each row in a 2D array
public static int[] sumEachRow(int[][] arr) {
int[] rowSums = new int[arr.length];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
————————
;
}
}
return rowSums;
}
5.
FILL IN THE BLANK QUESTION
3 mins • 2 pts
// 5. Calculate the sum of each column in a 2D array
public static int[] sumEachColumn(int[][] arr) {
int[] colSums = new int[————————];
for (int j = 0; j < arr[0].length; j++) {
for (int i = 0; i < arr.length; i++) {
——————————;
}
}
return colSums;
}
6.
FILL IN THE BLANK QUESTION
3 mins • 1 pt
// 6. Find the maximum value in a 2D array
public static int findMax(int[][] arr) {
int —————— = arr[0][0];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
if (_______) {
max = arr[i][j];
}
}
}
return max;
}
7.
FILL IN THE BLANK QUESTION
2 mins • 3 pts
// 7. Find the minimum value in a 2D array
public static int findMin(int[][] arr) {
int min = arr[0][0];
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
_______ {
min = arr[i][j];
}
}
}
return min;
}
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
14 questions
Intro to Robotics
Quiz
•
9th Grade
10 questions
PC1.8 Evaluate computer program
Quiz
•
9th Grade
15 questions
App Inventor
Quiz
•
10th Grade
15 questions
Coding Quiz
Quiz
•
6th - 10th Grade
10 questions
حاسب2 / اختبار الوحدة الثالثة
Quiz
•
10th - 12th Grade
15 questions
Problem Solving : Design Solution
Quiz
•
12th Grade
10 questions
Pengenalan Perwakilan Data
Quiz
•
12th Grade
12 questions
Q2 WEEK 3 PRACTICE QUIZ #2
Quiz
•
9th Grade
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade