1.

Consider a 2-dimensional array x with 10 rows and 4 columns, with each element storing a value equivalent to the product of row number and column number. The array is stored in row-major format. If the first element x[0][0] occupies the memory location with address 1000 and each element occupies only one memory location, which all locations (in decimal) will be holding a value of 10?

A. 1018, 1019
B. 1022, 1041
C. 1017, 1036
D. 1000, 1399
Answer» D. 1000, 1399


Discussion

No Comment Found