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
How does a for loop work java?
Can private method static?
What is fundamental datatype?
What is exception propagation?
what is function overloading in java?
What is singletonlist in java?
What is a lightweight component?
What is difference between == and === in js?
What are the different ways of creating thread?
What does || mean in code?
How many types of equations are there?
What is string english?
What is meant by 'bit masking' in java?
When a lot of changes are required in data, which one should be a preference to be used? String or stringbuffer?
How do you use compareto in java?