Q. What is true aboout Iterative Deepening DFS? (Solved)
1. it does not perform dfs in a bfs fashion.
2. it is the preferred informed search method
3. it’s a depth first search, but it does it one level at a time, gradually increasing the limit, until a goal is found.
4. is a depth-first search with a fixed depth limit l
- c. it’s a depth first search, but it does it one level at a time, gradually increasing the limit, until a goal is found.