Find expert answers and community-driven knowledge on IDNLearn.com. Discover comprehensive answers to your questions from our community of knowledgeable experts.
Sagot :
Arrays are data types used to hold multiple values in rows and columns
A 2 dimensional array can be created using int [] myArr = new int[3][4];
Assume the following parameters:
- The array data type is integer
- The array has 3 rows and 4 columns
The declaration of a 2 dimensional array follows the following syntax:
data-type[] array_name = new data-type[row][column];
Using the above syntax, a 2 dimensional array can be created using:
int [] myArr = new int[3][4];
Read more about 2 dimensional arrays at:
https://brainly.com/question/25671027
We appreciate your presence here. Keep sharing knowledge and helping others find the answers they need. This community is the perfect place to learn together. Thanks for visiting IDNLearn.com. We’re dedicated to providing clear answers, so visit us again for more helpful information.