Answered You can hire a professional tutor to get the answer.
Assume each element of an array list, stored in row-major order, occupies four bytes of storage.
1. Assume each element of an array list, stored in row-major order, occupies four bytes of storage. If array list is declared by each of the following, and the base address of the array is 100, find the address of the indicated array element.Please show all work.
Declaration Address
integer list[1..100]; list[10]
integer list[0..10, 0..20]; list[5, 10]
integer list[-5..5, -1..12]; list[3, 8]
2. Develop a formula, as in our class discussion, to access an array element if the two-dimensional array is stored in column-major order, i.e., array elements are stored in memory column-by-column rather than row-by-row. Please show allwork.