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
What is array and arraylist in java?
What is array initialization in java?
Explain the use of javap tool.
how to convert Java project into Maven ?
What is the use of volatile in java?
How to handle a web browser resize operation?
What is the purpose of format function?
What is member in java?
How do you use compareto in java?
Describe how to implement singleton design pattern in struts.
What is predicate in java?
Can a variable be local and static at the same time?
Why we go for collections in java?
Explain different states of a thread in java?
What are the advantages of user defined functions?