3.3.1. The MultiArray abstract data type A multi-dimensional array consists of a collection of elements organized into multiple dimensions. Individual elements are referenced by specifying an n-tuple or a subscript of multiple components, one for each dimension of the array. All indices of the n-tuple start at zero. MultiArray(d1, d2, ...dn) # creates a multi-dimensional array of elements organi..