+1 vote
in Artificial Intelligence by
General algorithm applied on game tree for making decision of win/lose is ____________

(a) DFS/BFS Search Algorithms

(b) Heuristic Search Algorithms

(c) Greedy Search Algorithms

(d) MIN/MAX Algorithms

I had been asked this question in an online quiz.

Enquiry is from Game Theory in section Adversarial Search of Artificial Intelligence

Select the correct answer from above options

Interview Questions and Answers, Database Interview Questions and Answers for Freshers and Experience

1 Answer

0 votes
by
Correct answer is (d) MIN/MAX Algorithms

To explain: Given a game tree, the optimal strategy can be determined by examining the min/max value of each node, which we write as MINIMAX- VALUE(n). The min/max value of a node is the utility (for MAX) of being in the corresponding state, assuming that both players play optimally from there to the end of the game. Obviously, the min/max value of a terminal state is just its utility. Furthermore, given a choice, MAX will prefer to move to a state of maximum value, whereas MIN prefers a state of minimum value.

Related questions

+1 vote
asked Oct 22, 2021 in Artificial Intelligence by DavidAnderson
0 votes
asked Oct 21, 2021 in Artificial Intelligence by DavidAnderson
...