Are you taking CLEP classes? Try clep.ai
| preferred AP College board partner for AP classes
easy Solved by 2 students

Populating a 2D Array

< Prev
Next >

What are the contents of the matrix array after the following code segment is executed?

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

for (int i = 0; i < matrix.length; i++)
{
      for (int j = 0; j < matrix[0].length; j++)
      {
            matrix[i][j] = (i + 1) * (j + 1);
      }
}
A

1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25

B

1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5

C

1 1 1 1 1
2 2 2 2 2
3 3 3 3 3
4 4 4 4 4
5 5 5 5 5

D

0 0 0 0 0
0 1 2 3 4
0 2 4 6 8
0 3 6 9 12
0 4 8 12 16

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question
Mark for review

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: apfive@apfive.org|Privacy Policy|FAQ