Question: What is the time complexity of inserting an element in a balanced binary search tree?
Options:
Correct Answer: O(log n)
Solution:
Inserting an element in a balanced binary search tree has a time complexity of O(log n) due to the tree\'s balanced nature.