int myArray[5][5] = {0,0};
int i, j;
for(i = 0; i < 5; i++)
for(j = 0; j < 5; j++)
myArray[i][j] += j;
// Assume above and below the above code is valid code
// what would the contents of the array look like
Group of answer choices
All Elements would contain 0
No Elements would contain 0
All the Values in any Column would be the same
All the Values in any Column would be different