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
Meghna MittalBegginer
a
Explanation: Sequence Containers is the subset of Containers that implements data structures which can be accessed sequentially.