Accepted Answer
A 2D array can be looped over by first going through each row and then each column in each row. Thus, two loops that are nested inside of one another are required.The break statement can be used at any point if you want to exit the nested loop. Multidimensional Arrays can be defined simply as an array of arrays in the Java language. Tabular form is used to store data in multidimensional arrays (in row major order). An array can be traversed using a for loop or for Each loop. Instead of publishing each element one by one, you can retrieve the elements at each index by using a for loop that iterates the index from 0 to the length of the array (Array Name .length).Learn more about array here-https://brainly.com/question/19570024#SPJ4