Vidyalelo
C++ Programming · Q79

Standard Template Library (STL) in C++

Programming · C++ Programming · question 79

Q79

What are the Associative 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)
Answer
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

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board