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
Is java developer a good career?
What are the common uses of "this" keyword in java ?
What is java util function?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread
What does those terms actually mean included in the j.d.k i.6?
What do you understand by final value?
Is null keyword in java?
why we use merge option in hybernate pls give a ex snippet
What is map in java?
Can we inherit a class with private constructor?
Is intellij better than eclipse?
What are parsers? Dom vs sax parser.
what is an objects lock and which objects have locks? : Java thread
Can we call the run() method instead of start()?
What is the benefit of lambda expressions?