Question Level: Easy: Part A (20 1 20)
Question Level: Easy: Part A (20 1 20)
Question Level: Easy: Part A (20 1 20)
Part A (20*1=20)
a)Search technique
b)Planning system
c)Constraint satisfaction system
d)Knowledge base system
9) Select the appropriate technique that can be used for Map coloring problem
a)Means-end analysis
b)Constraint satisfaction
c)AO* search
d)Breadth first search
10) The adjective “first-order” distinguishes first-order logic from ___________ in which there
are predicates having predicates or functions as arguments, or in which one or both of predicate
quantifiers or function quantifiers are permitted.
a) Representational Verification
b) Representational Adequacy
c) Higher Order Logic
d) Inferential Efficiency
11) Below is the snapshot of a 2-person game and determine the saddle point.
a)X2Y2
b)X1Y2
c)X1Y1
d)There is no saddle point.
12) Below is the snapshot of a 2-person game. Strategy that Y will play is
a)X1
b)X2
c)Y1
d)Y2
13) Below is the snapshot of a 2-person game. If the game is played many times the value of the
game will be
a)19.00.
b)4.75.
c)11.00.
d)unable to be computed as the was not given.
A. Relationships between the actions of the behavior are set prior to the actions
B. Relationships between the actions of the behavior are not set until absolutely necessary
15) In this planning system, the problem solver makes use of a single stack that contains both
goals and operators that have been proposed to satisfy those goals.
a) Meta Planning
b) Case base Planning
c) Goal Stack Planning
d) None of the mentioned
16) ‘α |= β ‘(to mean that the sentence α entails the sentence β) if and only if, in every model in
which α is _____ β is also _____
a) True, true
b) True, false
c) False, true
d) False, false
17) A∗ algorithm uses f′=g+h′ to estimate the cost of getting from the initial state to the goal
state, where g is a measure of cost getting from initial state to the current node and the function h
′ is an estimate of the cost of getting from the current node to the goal state. To find a path
involving the fewest number of steps, we should test,
a) g=1
b) g=0
c) h′=0
d) h′=1
18) Consider following sentences regarding A∗, an informed search strategy in Artificial
Intelligence (AI).
Here, C∗ is the cost of the optimal solution path. Which of the following is correct with respect
to the above statements?
19) What is the correct translation of the following statement into mathematical logic? “Some
real numbers are rational”
Answer : C
20) P and Q are two propositions. Which of the following logical expressions are equivalent?
a)Only I and II
c)Only I, II and IV
21)The CORRECT formula for the sentence, “not all rainy days are cold” is
Answer : D
22) Select the appropriate code for the recursive Tower of Hanoi problem.(n is the number of
disks)
{
if (n == 1)
{
System.out.println(start + " -> " + end);
}
else
{
System.out.println(start + " -> " + end);
solve(n - 1, auxiliary, start, end);
}
}
d)public void solve(int n, String start, String auxiliary, String end)
{
if (n == 1)
{
System.out.println(start + " -> " + end);
}
else
{
solve(n - 1, start, end, auxiliary);
System.out.println(start + " -> " + end);
}
}
Answer : A
Part B (10*3=30)
Question Level: Easy
16) Consider the following two-person game: Assume that both players know the value of x,
a)For what values of x (if any) is there a Nash equilibrium in which Player 2 chooses R
with probability one? Explain, and describe the equilibrium or equilibria in different
cases.
b) For what values of x (if any) does decision R for Player 2 survive iterated deletion of
strictly dominated strategies. Explain.
17) Two players, Row and Column, are driving toward each other on a one-lane road. Each
player chooses simultaneously between going straight (S), swerving left (L), and
swerving right (R). If one player goes straight while the other swerves, either right or left,
the one who goes straight gets payoff 3 while the other gets –1. If each player swerves to
his left, or each swerves to his right, then each gets 0 (remember, they are going in
opposite directions). If both go straight, or if one swerves to his left while the other
swerves to his right, then the cars crash and each gets payoff –4.
i. Write the payoff matrix for this game.
ii. Find all the game's rationalizable strategies for each player
iii. Find all the game's Nash equilibria in pure strategies
18) The figure below is the game tree of a two-player game; the first player is the maximizer
and the second player is the minimizer. Use the tree to answer the following questions:
19) Consider the game tree picture below where A-F r epresents some real values. Assume the
R
nodes are explored from left to right and standard alpha beta pruning is used.
a)Give a value of A such that B is pruned
b)Give a value of A such that B is not pruned
c)There are some values of A and B such that the subtree containing C and D is pruned. Is this
statement True or False
d)Assuming that B=5 and A=5, give a value of C and D such that the subtree containing E and F
is pruned