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
Are private methods final?
Why are pointers not secure?
Can we have multiple classes in a single file?
How will you call an Applet using Java Script Function?
What is the difference between heap and stack memory?
What is the significance of listiterator?
What do you understand by access specifiers in Java?
What does the ‘static’ keyword mean? Is it possible to override private or static method in java?
Does java linked list allow duplicates?
What is java literals?
What does regex mean?
Why we use multi threading instead of multiprocessing?
What are the advantages of user defined functions?
What is difference between array and arraylist in java?
What are the restrictions imposed on method overriding?