0 votes
in Artificial Intelligence by
Which algorithm is used in the Game tree to make decisions of Win/Lose?

a) Heuristic Search Algorithm

b) DFS/BFS algorithm

c) Greedy Search Algorithm

d) Min/Max algorithm

1 Answer

0 votes
by

d. Min/Max Algorithm

Explanation: A game tree is a directed graph whose nodes represent the positions in Game and edges represent the moves. To make any decision, the game tree uses the Min/Max algorithm. The Min/Max algorithm is the preferred one over other search algorithms, as it provides the best move to the player, assuming that the opponent is also playing Optimally.

Related questions

+1 vote
asked Oct 21, 2021 in Artificial Intelligence by DavidAnderson
0 votes
asked May 17, 2019 in Other by Derya
...