Which programming language data structure is a special variable with more than one value at a time?
- List
- Array
- Tree
- File with comma-separated values
Explanation & Hint:
An array is a special variable with more than one value at a time. Lists are data structures in programming languages that contain an ordered structure of elements. Trees are non-linear data structures represented using nodes in a hierarchical model. Comma-separated values (CSV) files are plaintext files that contain data delimited by commas (,) and sometimes tabs or other characters, like a semicolon (;). |