Artificial Intelligence (2180703) MCQs

MCQs of Game Playing: Overview, And Example Domain

Showing 1 to 10 out of 41 Questions
1.
General games involves ____________
(a) Single-agent
(b) Multi-agent
(c) Neither Single-agent nor Multi-agent
(d) Only Single-agent and Multi-agent
Answer:

Option (d)

2.
Mathematical game theory, a branch of economics, views any multi-agent environment as a game provided that the impact of each agent on the others is “significant,” regardless of whether the agents are cooperative or competitive.
(a) TRUE
(b) FALSE
Answer:

Option (a)

3.
Zero sum games are the one in which there are two agents whose actions must alternate and in which the utility values at the end of the game are always the same.
(a) TRUE
(b) FALSE
Answer:

Option (b)

4.
Zero sum game has to be a ______ game.
(a) Single player
(b) Two player
(c) Multiplayer
(d) Three player
Answer:

Option (c)

5.
A game can be formally defined as a kind of search problem with the following components.
(a) Initial State
(b) Successor Function
(c) Terminal Test
(d) All of the mentioned
Answer:

Option (d)

6.
The initial state and the legal moves for each side define the __________ for the game.
(a) Search Tree
(b) Game Tree
(c) State Space Search
(d) Forest
Answer:

Option (b)

7.
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
Answer:

Option (d)

8.
The minimax algorithm computes the minimax decision from the current state. It uses a simple recursive computation of the minimax values of each successor state, directly implementing the defining equations. The recursion proceeds all the way down to the leaves of the tree, and then the minimax values are backed up through the tree as the recursion unwinds.
(a) TRUE
(b) FALSE
Answer:

Option (a)

9.
What is the complexity of minimax algorithm?
(a) Same as of DFS
(b) Space – bm and time – bm
(c) Time – bm and space – bm
(d) Same as BFS
Answer:

Option (a)

10.
Which is the most straightforward approach for planning algorithm?
(a) Best-first search
(b) State-space search
(c) Depth-first search
(d) Hill-climbing search
Answer:

Option (b)

Showing 1 to 10 out of 41 Questions