Quiz: Working with Data Structures
Test your understanding with these technical questions.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Which container should you choose if you need to store a list of user IDs that will grow unpredictably as users register, and you frequently need to access IDs by their index?
A.
std::array
B.
std::vector
C.
std::stack
D.
std::deque
1 / 10
...