Crosswords

12345678910111213
Across
  1. 2. Process of providing an array as an argument in a function call.
  2. 3. User-defined data type consisting of a set of named integral constants.
  3. 5. Loop that executes at least once before checking the condition.
  4. 7. Array used to store a sequence of characters, often to form a string.
  5. 9. Data structure that can store different data types but only one value at a time.
  6. 10. Loop structure that iterates a set number of times, typically using a counter variable.
  7. 11. Command used to exit a loop prematurely.
  8. 13. Data type that groups variables of different types under a single name.
Down
  1. 1. Loop structure that continues as long as a condition is true.
  2. 4. Type of array that uses more than one index, like a matrix.
  3. 6. Data structure that stores a fixed-size sequence of elements of the same data type.
  4. 7. Statement that skips the current iteration and moves to the next in a loop.
  5. 8. Collection where each element is a structure, often used to store multiple records.
  6. 12. Sequence of characters, often stored in a character array.