What are the Sequence Containers?
(a) Containers that implements data structures which can be accessed sequentially
(b) Containers that implements sorted data structures for fast search in O(logn)
(c) Containers that implements unsorted(hashed) data structures for quick search in O(1)
(d) Containers that implements data structures which can be accessed non-sequentially
I have been asked this question in an interview for job.
I'm obligated to ask this question of Standard Template Library in section Derived Classes, Templates & Exception Handling in C++ of C++