In propositional logic, which of the following formulas is not a valid tautology?
P∨¬P
P∧¬P
(P→Q)∨(¬P∨Q)
P→(P∨Q)
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
Which of the following statements is not a property of Breadth-First Search (BFS)?
BFS always finds the shortest path in an unweighted graph.
BFS explores all nodes at the present depth before moving to nodes at the next depth level.
BFS has an exponential time complexity in the worst case.
BFS is guaranteed to work optimally for weighted graphs with arbitrary edge costs.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In an informed search algorithm like A, when is a heuristic considered admissible?*
When it overestimates the true cost to reach the goal.
When it is always consistent, following the triangle inequality.

When it underestimates or equals the true cost to reach the goal.
When it guarantees optimality by ignoring some paths.

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In adversarial search, what is the primary goal of using the evaluation function in games like chess or checkers?
To determine the next move by evaluating every possible move's full game outcome.
To estimate the likelihood of a draw in the game.
To approximate the value of a game position when the search tree cannot be fully explored.
To minimize the time required to reach a solution by ignoring suboptimal moves.

Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In adversarial search, which of the following statements is correct regarding the Minimax algorithm?

Minimax only works when both players have full information.
Minimax assumes that both players will play optimally.
Minimax will always return the same result as Alpha-Beta Pruning.
Minimax is guaranteed to win for the maximizer in all games.
Difficulty Level: 1
Positive Marks: 1.00
Negative Marks: 0.33
In a search problem, which heuristic function would ensure that A behaves exactly like Uniform-Cost Search?
A heuristic function that overestimates the cost to reach the goal.
A heuristic function that is always zero.
A heuristic function that always underestimates the cost.
A heuristic function that is non-admissible.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Which of the following statements about informed and uninformed search is true?
Uninformed search algorithms can always find the shortest path faster than informed search algorithms.
Informed search algorithms guarantee finding the shortest path if a heuristic function is admissible and consistent.
Both informed and uninformed searches require heuristic information to guarantee completeness.
Breadth-First Search is an example of an informed search algorithm.
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Let P: This is a great website, Q: You should not come back here. Then ‘This is a great website and you should come back here.’ is best represented by?
~P V ~Q
P ∧ ~Q
P V Q
P ∧ Q
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Let P: We should be honest., Q: We should be dedicated., R: We should be overconfident. Then ‘We should be honest or dedicated but not overconfident.’ is best represented by?
~P V ~Q V R
P ∧ ~Q ∧ R
P V Q ∧ R
P V Q ∧ ~R
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
What is the correct translation of the following statement into mathematical logic? “Some real numbers are rational”
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Let Graph(x) be a predicate which denotes that x is a graph. Let Connected(x) be a predicate which denotes that x is connected. Which of the following first order logic sentences DOES NOT represent the statement: “Not every graph is connected”?
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The CORRECT formula for the sentence, “not all rainy days are cold” is
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Which one of the first order predicate calculus statements given below correctly express the following

English statement?

Tigers and lions attack if they are hungry or threatened.

Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
Let P, Q and R be three atomic prepositional assertions. Let X denote (P v Q) → R and Y denote (P → R) v (Q → R). Which one of the following is a tautology?
X → Y

Y → X
¬ Y → X
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66
The following propositional statement is

(P → (Q v R)) → ((P ^ Q) → R)

satisfiable but not valid
valid
a contradiction
none of the above
Difficulty Level: 1
Positive Marks: 2.00
Negative Marks: 0.66