Uninformed BFS, DFS ,Depth limited search, time space complexity, uniform cost search , Informed Search, best first search , A* , Local search algorithm , Min-Max algorithm , Alpha beta pruning IMP! , Genetic Algorithms
Let's go through the questions in the provided image and provide detailed answers.
Answer: The A* (A-star) algorithm is a popular search algorithm used to find the shortest path from an initial state to a goal state in a graph. It uses both the actual cost to reach the node (g) and a heuristic estimate of the cost to get from the node to the goal (h) to determine the path.