Arrays(General)

12345678910111213141516171819
Across
  1. 4. Elements of an array are stored in consecutive memory locations.
  2. 6. Describes the state of an array’s elements when they haven’t been given explicit initial values.
  3. 10. Rearranging the elements of an array in a particular order, such as ascending or descending.
  4. 12. Flipping the order of elements in an array.
  5. 13. The process of visiting and accessing each element of an array.
  6. 14. Retrieving the value of an element from an array using its index.
  7. 15. Creating an array whose size is determined at runtime, using memory allocation functions.
  8. 17. An array with rows and columns, often used to represent tables or grids of data.
  9. 19. An array with more than one dimension, often represented as a matrix or grid.
Down
  1. 1. Changing the size of a dynamic array during program execution.
  2. 2. Specifying the type and name of an array without assigning initial values.
  3. 3. The range of valid index values for an array, usually from 0 to one less than the size.
  4. 5. The number of elements an array can hold, specified during its declaration.
  5. 7. Assigning values to the elements of an array when it’s created.
  6. 8. A single value within an array, identified by its index.
  7. 9. Looking for a specific value within an array.
  8. 11. A collection of elements of the same data type, stored in contiguous memory locations.
  9. 16. A numeric value used to access individual elements within an array.
  10. 18. Iterating through an array using a control structure like “for” or “while.”