Please Explain multi dimensional arrays | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Please Explain multi dimensional arrays

18th Apr 2017, 8:05 AM
Harikrishnan s
Harikrishnan s - avatar
2 Answers
+ 22
arrays that contain other arrays [[a,b,c],[1,2,3]]
18th Apr 2017, 8:17 AM
Valen.H. ~
Valen.H. ~ - avatar
+ 1
A multidimensional array is an array of arrays: A 2D array can be represented as a table / matrix with rows and columns: arr[3][2] --> is an array of 3 rows and 2 columns which you can access each element by two indices starting from zero (arr[0][0] --> first element / arr[2][1] --> element in third row and second column) 3D and above can be represented as a 1D array which each cell contains an array, and each cell in the second array contains another array...etc. :D http://2.bp.blogspot.com/-SXMbF3iVB2s/VDjpPwGSGUI/AAAAAAAACB0/u-0QSuneaaA/s1600/two-dimensional-array-in-java.png
18th Apr 2017, 8:20 AM
Abeer Megahed
Abeer Megahed - avatar