A
array is an array of
arrays.
two-dimensional
Although a two-dimensional
array is actually an array of
arrays, it’s best to think of it
as having
of elements.
rows and columns
Declaring
Two-Dimensional
Arrays
double[][] scores = new double[3][4];
A is a loop
inside another loop. These
loops are particularly
useful when displaying
multidimensional data.
nested loop
When the rows of a two-
dimensional array are of different
lengths, the array is known as a
ragged array
True or false
Java does not limit the number
of dimensions that an array
may have. It is possible to
create arrays with multiple
dimensions, to model data that
occurs in multiple sets.
True