Does java support multi dimensional arrays ?
Answers were Sorted based on User's Feedback
Answer / chandrarekha
Yes java supports multi dimensional arrays..care should be
taken while creating an array, as the array elements are
considered to be objects...we use new operator
int arr[][]=new int[3][]
arr[0]=new int[2];
arr[1]=new int[3];
arr[2]=new int[4];
the second dimension need not always have the same number
of elements.
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / ashokmail.java@gmail.com
Yes . Java support multi dimensional arrays.
Example : int[][] i = {(1,2),(2,4)};
| Is This Answer Correct ? | 12 Yes | 6 No |
Answer / 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 |
Answer / jesi
java does not really support multidimensional array.it does however supports array of array.
| Is This Answer Correct ? | 2 Yes | 0 No |
Which of the following is not an isolation level in the JDBC
Why string is not a wrapper class?
What is natural ordering in java?
What is race condition ?? (Threading concept) TCS 2 sept10
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
If there are two notepad opened and working on it . is this a process or thread? computer based Live Example to differentiate between Thread , Process , and Multi tasking ?
What are different types of multitasking?
Does java arraylist maintain insertion order?
What is singleton class and how can we make a class singleton?
What is enhanced loop in java?
What is the difference between Array and Hash Table?
What is flag in java?