Question: What is the primary difference between a binary heap and a binary search tree?
Options:
Correct Answer: All of the above
Solution:
The primary differences include that binary heaps are complete binary trees used for priority queues, while binary search trees are not necessarily complete and are used for searching.