Consider the game tree for a two-player turn-taking minimax game as shown in the figure. The value of a terminal node represents the utility of the game state if the game ends there. The numbers written next to the edges denote the strategies.
There are two players MAX and MIN. At any particular state of the game, MAX prefers to move to a state of maximum value. On the other hand, MIN prefers to move to a state of minimum value.
Suppose MAX starts the game at the root and has three strategies: 1, 2 and 3.
Next, MIN plays and also has three strategies: 1, 2 and 3. The game ends there.
Both players always take optimal strategies throughout the game.
At the root, the best strategy for MAX is ___________ . (Answer in integer)

Step 1: Understand tree
Root is MAX, next level is MIN
Each branch (1, 2, 3) leads to a MIN node with 3 terminal values
Step 2: Evaluate MIN level (take minimum in each branch)
Step 3: Evaluate MAX at root
MAX chooses maximum among:
$ -1, 1, -12 $
Best value = $1$
This corresponds to strategy 2
Final Answer:
$\boxed{2}$
Consider game trees Tree-1 and Tree-2 as shown. The first level is a MAX agent and the second level is a MIN agent. The value in the square node is the output of the utility function.
For what ranges of $x$ and $y$, the right child of node $B$ and the right child of node $E$ will be pruned by alpha-beta pruning algorithm?
Consider the following statement: In adversarial search, $\alpha-\beta$ pruning can be applied to game trees of any depth where $\alpha$ is the (m) value choice we have formed so far at any choice point along the path for the MAX player and $\beta$ is the (n) value choice we have formed so far at any choice point along the path for the MIN player. Which ONE of the following choices of (m) and (n) makes the above statement valid?