πŸ“Š Artificial Intelligence and Robotics (AIR)
Q. A* Search Algorithm _____
  • (A) does not expand the node which have the lowest value of f(n),
  • (B) finds the shortest path through the search space using the heuristic function i.e f(n)=g(n) + h(n)
  • (C) terminates when the goal node is not found
  • (D) all of the above
πŸ’¬ Discuss
βœ… Correct Answer: (B) finds the shortest path through the search space using the heuristic function i.e f(n)=g(n) + h(n)
πŸ“Š Artificial Intelligence and Robotics (AIR)
Q. What is true about variable neighborhood function?
  • (A) neighbourhood functions that are sparse lead to quicker movement during search
  • (B) algorithm has to inspect very fewer neighbours
  • (C) vdn stars searching with sparse neighbourhood functions, when it reaches an optimum, it switches to denser function.
  • (D) all of the above
πŸ’¬ Discuss
βœ… Correct Answer: (D) all of the above
πŸ“Š Artificial Intelligence and Robotics (AIR)
Q. What is the termination criteria in Hill climbing?
  • (A) when no successor of the node has better heuristic value.
  • (B) when successor of the node has better heuristic value.
  • (C) when no ancestor of the node has better heuristic value.
  • (D) when ancestor of the node has better heuristic value.
πŸ’¬ Discuss
βœ… Correct Answer: (A) when no successor of the node has better heuristic value.
πŸ“Š Artificial Intelligence and Robotics (AIR)
Q. Which search strategy is combining the benefits of both BFS and DFS?
  • (A) depth limited search
  • (B) iterative deepening depth first search
  • (C) best first search
  • (D) none
πŸ’¬ Discuss
βœ… Correct Answer: (B) iterative deepening depth first search