What’s a two-dimensional array?
An array that contains other arrays as its elements, it can form a table (5x5).
What’s the syntax for declaring a two-dimensional array?
elementType [] [] arrayRefVar;
EXAMPLE
int[][] matrix;
What are the two indexes in a multi-dimensional array?
Row index and column index
What is a ragged array and how does it work?
A multi-dimensional array is technically multiple single row arrays stored together in an array. You can have different length arrays inside a multi array, which is called a ragged array.
What’s a common way to process a two-way array?
Nested for loops. The loop for entering columns should be nested inside the loop for rows.