Does java support multi dimensional arrays ?

Answers were Sorted based on User's Feedback



Does java support multi dimensional arrays ?..

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

Does java support multi dimensional arrays ?..

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

Does java support multi dimensional arrays ?..

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

Does java support multi dimensional arrays ?..

Answer / ravikiran(aptech mumbai)

yes....

Is This Answer Correct ?    5 Yes 0 No

Does java support multi dimensional arrays ?..

Answer / sunil

yes


Example : int i[][] = {(3,4),(5,8)};

Is This Answer Correct ?    4 Yes 1 No

Does java support multi dimensional arrays ?..

Answer / jesi

java does not really support multidimensional array.it does however supports array of array.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

Why do we need hashmap in java?

0 Answers  


Explain about arraylist?

0 Answers  


What is the purpose of the runtime class in java programming?

0 Answers  


what is the reason behind non static method cannot be referenced from a static Context?

2 Answers  


What is the maximum size of hashmap in java?

0 Answers  






Static Variable can referred in non-static method?

3 Answers  


Which is not Object in Java?

10 Answers   Honeywell,


What do you mean by pointer value and address?

0 Answers   Syntel, Visa,


Explain the usage of this with constructors?

0 Answers  


What is the mapping mechanism used by java to identify IDL language?

0 Answers  


What is this keyword in java?

0 Answers  


What is overloading and overriding in java?

0 Answers  


Categories