In COBOL, a multi-dimensional array is often referred to as a _____ array.
- COMP
- GROUP
- INDEX
- OCCURS
In COBOL, when you define a multi-dimensional array, you use the OCCURS clause to specify the number of occurrences for each dimension. This creates a matrix-like structure, often referred to as an OCCURS array.
Loading...
Related Quiz
- A colleague is new to COBOL programming and asks you about the significance of the "PROGRAM-ID" paragraph in the "IDENTIFICATION DIVISION." How would you explain its role?
- In COBOL, the "AT END" phrase can be used to handle exceptions related to reaching the _____ of a file.
- What is the difference between "ON SIZE ERROR" and "AT SIZE ERROR" in error handling?
- In indexed file processing, what is the role of the index or key in accessing records?
- In COBOL, a _____ is a condition that triggers a temporary stop in program execution for inspection during debugging.