Question: What is the runtime of accessing a value in a dictionary by using its key?
- O(n), also called linear time.
- O(log n), also called logarithmic time.
- O(n^2), also called quadratic time.
- O(1), also called constant time.
Answer: The correct answer of the above question is Option D:O(1), also called constant time.