MCQOPTIONS
Saved Bookmarks
| 1. |
What is true aboout Iterative Deepening DFS? |
| A. | it does not perform dfs in a bfs fashion. |
| B. | it is the preferred informed search method |
| 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. |
| D. | is a depth-first search with a fixed depth limit l |
| Answer» D. is a depth-first search with a fixed depth limit l | |