Arrays (Two Dimensional)

12345678910111213141516171819
Across
  1. 2. The number of elements in each dimension of a two-dimensional array.
  2. 5. Each individual value in a two-dimensional array.
  3. 9. The process of giving values to elements when declaring an array.
  4. 10. A common term to describe the structure of a two-dimensional array.
  5. 11. All arrays are passed to functions in this particular way.
  6. 15. The act of looping through elements in an array.
  7. 18. The process of defining the type, name and size of an array.
  8. 19. Term used to describe loops inside loops, commonly used to traverse two-dimensional arrays.
Down
  1. 1. A term to describe arrays with more than one dimension.
  2. 3. The process of accessing elements in an array using indices.
  3. 4. The most important index when passing an array to a function.
  4. 6. The location where elements of a two-dimensional array are stored.
  5. 7. Adjective used to describe the arrangement of elements in a two-dimensional array.
  6. 8. A visual representation of data often created using a two-dimensional array.
  7. 12. A block of code that can be called to perform a specific task, often used with two-dimensional arrays.
  8. 13. The horizontal divisions in a two-dimensional array.
  9. 14. The vertical divisions in a two-dimensional array.
  10. 16. A collection of elements stored in contiguous memory locations.
  11. 17. A mathematical term often used interchangeably with a two-dimensional array.