Computer Applications

Define the following with their constructs:

Double Dimensional Array

Java Arrays

52 Likes

Answer

Double Dimensional Array contains multiple rows and multiple columns. The syntax of declaring a Double Dimensional Array is:

<type> <array-variable>[][] = new <type>[<rows>][<columns>];


OR

<type> [][] <array-variable> = new <type>[<rows>][<columns>];

Answered By

36 Likes


Related Questions