Question: Which of the following is NOT a characteristic of BFS?
Options:
Correct Answer: Can be implemented using recursion
Solution:
BFS is typically implemented using a queue, not recursion, which is a characteristic of DFS.