Final answer:
The question involves identifying nodes not evaluated in a game tree by applying the alpha-beta pruning algorithm, which optimizes search in game playing AI by not examining nodes that don't affect the outcome.
Step-by-step explanation:
The question pertains to the alpha-beta pruning algorithm in the field of artificial intelligence, specifically within the area of game tree search algorithms. To identify which nodes will not be examined by the alpha-beta pruning algorithm, one must understand that the algorithm seeks to minimize the number of nodes evaluated in a minimax tree. During the search process, alpha-beta pruning eliminates branches that cannot possibly influence the final decision from the root node, optimizing the search effort when looking for the best move in a game.