Which of the following is not a fundamental capability of a dictionary?

traverse
  • search
  • insert
  • delete

Insert, search, and delete are things that you want to do to most "container" data structures.

Traverse is something that you normally do to a tree.