A two-dimensional array int[][] arr is essentially an array of ________ in Java.

  • arrays
  • arrays of arrays
  • arrays of integers
  • integers
In Java, a two-dimensional array int[][] arr is essentially an array of arrays. It means that each element of arr is itself an array, which can hold integers or other data types. This concept allows you to create tables or matrices of data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *