What does Array refer to?
- A. The process of translating source code written in a high-level language into machine code before execution.
- B. A data structure that stores a fixed-size sequential collection of elements of the same type. ✓
- C. The process of executing source code line by line without producing a separate machine-code file.
- D. A programming mechanism used to detect and respond to runtime errors gracefully.
Correct answer
B. A data structure that stores a fixed-size sequential collection of elements of the same type.
Explanation
Array refers to a data structure that stores a fixed-size sequential collection of elements of the same type.