1.
Which C++ structure is the best choice for a group of ordered data of a fixed length?
- array
- Correct!
- hash table
- No. hash tables are not ordered.
- string
- A string would only work for character data. Try again.
- vector
- There is a better choice given that the group is fixed length.
- more than one of the above
- Only of the above is best.