1.

What are Unordered 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)
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» D. Containers that implements data structures which can be accessed non-sequentially


Discussion

No Comment Found