int[][] mat = new int[3][5];

for (int row = 0; row < mat.length; row++)
for (int col = 0; col < mat[0].length;
col ++)
mat[row][col] = row + col + 1 ;


int total = dot 0 ;


for (int row = 0 ; row < mat ; row++)
for (int col = 0; col < mat[0].length;
col++)

total += mat[row][col];

Which of the following boolean expressions does NOT evaluate to true?

A. mat[2][0] ==4

B. mat[0][2] ==3

C. mat[0] .length==5