Arrays
Across
- 3. The mandatory punctuation mark used to terminate a statement in Java
- 4. the index number enclosed in square brackets [] used to access specific array elements.
- 7. A type of loop that lacks a proper terminating condition, causing it to execute endlessly until the program is forced to stop.
- 8. a loop that is placed completely inside the body of another loop.
Down
- 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. skips the remaining statements in the current iteration
- 5. prematurely terminates a loop
- 6. The integer value representing the position of an element in an array, always starting at 0 in Java