Answer Posted / santosh anand
The Java programming language does not really support multi-dimensional arrays. It does, however, support arrays of arrays. In Java, a two-dimensional array x is really an array of one-dimensional arrays:
int[][] x = new int[3][5];
The expression x[i] selects the one-dimensional array;
the expression x[i][j] selects the element from that array.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
In java, how we can disallow serialization of variables?
Why are lists ordered in java?
Are maps ordered java?
what is comparable and comparator interface?
Is assembly language a low level language?
What is outofmemoryerror in java?
What does provide mean construction?
can I implement my own start() method? : Java thread
What are the types of methods in java?
What state does a thread enter when it terminates its processing in java programming?
What are methods in java?
Can inner class have constructor?
What is casting in java programming?
what is a green thread? : Java thread
What is an association?