Arrays

12345678
Across
  1. 3. The mandatory punctuation mark used to terminate a statement in Java
  2. 4. the index number enclosed in square brackets [] used to access specific array elements.
  3. 7. A type of loop that lacks a proper terminating condition, causing it to execute endlessly until the program is forced to stop.
  4. 8. a loop that is placed completely inside the body of another loop.
Down
  1. 1. The specification of an array's type, name, and size (e.g., int arr[] = new int[5];) which allocates memory for its elements.
  2. 2. skips the remaining statements in the current iteration
  3. 5. prematurely terminates a loop
  4. 6. The integer value representing the position of an element in an array, always starting at 0 in Java