(Choose 1 answer)
What does method M2 do?
public static int M2(int[,] T)
int I = T[0, 0];
{ foreach (int e in T){}if (e < l)1= e return 1;}
A. This method returns the smallest element in array T.
B. We cannot use foreach statement with a 2-dimensional array.
C. This method returns the first element that is greater than T[0,0] not the biggest element in array T.
D. None of the others
Exit 42