given the following: long[][] myarray; which of the following statements allocate an array with 5 rows of 7 columns each and assign its reference to myarray?
A. myarray = new long[5][7];
B. myarray = new long[7][5];
C. myarray = new long[5, 7];
D. myarray = new long[7, 5];