Arrays - 1D and 2D

1234567891011121314151617
Across
  1. 3. The process of giving initial values to an array
  2. 5. A __ array consists of only one row
  3. 6. Loop structure often used with array indexing
  4. 7. Another word for 2D array structure
  5. 8. A 2D array with rows of different lengths
  6. 11. Function used to get number of elements in an array
  7. 12. Type of error when accessing invalid index
  8. 16. Memory area where arrays are stored dynamically
  9. 17. A simple sorting algorithm for arrays
Down
  1. 1. A simple search method to find elements in array
  2. 2. A 2D array with equal rows and columns
  3. 4. To process all elements in an array
  4. 9. Number of rows and columns in a 2D array
  5. 10. Indexing usually starts from this number
  6. 13. Used to access elements in an array
  7. 14. Number of elements in a 1D array
  8. 15. A common structure used to traverse arrays