Analyze the following code:
int matrix[5][5];
for (int column = 0; column < 5; column++)
matrix[4][column] = 10;
After the loop, the last row of matrix 0, 0, 0, 0, 10.
After the loop, the last row of matrix 10, 10, 10, 10, 10.
After the loop, the last column of matrix 10, 10, 10, 10, 10.
After the loop, the last row of matrix 0, 0, 0, 0, 0.