Question: Which traversal method is not suitable for binary search trees when you want to retrieve nodes in sorted order?
Options:
Correct Answer: Pre-order
Solution:
Pre-order traversal does not retrieve nodes in sorted order for binary search trees, as it visits the root before the subtrees.