Deck 3: Artificial Intelligence and Search Algorithms
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Question
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/24
Play
Full screen (f)
Deck 3: Artificial Intelligence and Search Algorithms
1
Which of the following is an extension of the semantic network?
A)expert systems
B)rule based expert systems
C)decision tree based networks
D)partitioned networks
A)expert systems
B)rule based expert systems
C)decision tree based networks
D)partitioned networks
partitioned networks
2
Is the below statement true for the domain of positive integers ?p ?q ( p + q = 7)
True
3
Which of the following is a sound rule of inference?
A)q ? (p ? q) ? p
B)p ? (p ? q)
C)q ? (p ? q) ? p
D)all of above
A)q ? (p ? q) ? p
B)p ? (p ? q)
C)q ? (p ? q) ? p
D)all of above
p ? (p ? q)
4
?x ? y P(x,y) ? ? y ? x P(x,y)
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
5
Is ?z S(x,y) a well-formed formula?
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
6
The statement comprising the limitations of FOL is/are ____________
A)expressiveness
B)formalizing natural languages
C)many-sorted logic
D)all of the mentioned
A)expressiveness
B)formalizing natural languages
C)many-sorted logic
D)all of the mentioned
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
7
what is the issue of Forward State Space Planning?
A)low banching factor.
B)large branching factor.
C)work in forward fashion
D)work in backward fashion
A)low banching factor.
B)large branching factor.
C)work in forward fashion
D)work in backward fashion
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
8
Goal Stack Planning breaks up a ______________________________
A)initial state
B)stack in different part
C)set of goal predicates into individual subgoals
D)all of the above
A)initial state
B)stack in different part
C)set of goal predicates into individual subgoals
D)all of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
9
What is true about Linear Planning?
A)it refers to the fact that the subgoals are attempted and solved in a linear order.
B)attempts to solve subgoals individually one after another.
C)attempts to solve subgoal individually in non linear fashion
D)both a & b
A)it refers to the fact that the subgoals are attempted and solved in a linear order.
B)attempts to solve subgoals individually one after another.
C)attempts to solve subgoal individually in non linear fashion
D)both a & b
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
10
Agent interacts with the world via _______________ and ______________
A)decision , effect
B)perception, decision
C)perception, action
D)perception, effect
A)decision , effect
B)perception, decision
C)perception, action
D)perception, effect
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
11
The start node for search in plan space planning is_______________
A)bfs
B)dfs
C)both dfs and bfs
D)a*
A)bfs
B)dfs
C)both dfs and bfs
D)a*
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
12
In which chaining, the Left-Hand side is used to match the rules and Right-Hand side is used to check the effect of using the rule.
A)forward chaining
B)backward chaining
C)reverse chaining
D)both b & c
A)forward chaining
B)backward chaining
C)reverse chaining
D)both b & c
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
13
The components of Expert system are?
A)a set of rules, the inference engine (ie), forward chaining
B)a set of rules, backward chaining, a working memory (wm)
C)a set of rules, the inference engine (ie), a working memory (wm)
D)a set of rules, forward chaining, backward chaining
A)a set of rules, the inference engine (ie), forward chaining
B)a set of rules, backward chaining, a working memory (wm)
C)a set of rules, the inference engine (ie), a working memory (wm)
D)a set of rules, forward chaining, backward chaining
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
14
What is true about Artificial Intelligence?
A)the ability to solve problems?.
B)the ability to act rationally.
C)the ability to act like humans
D)all of the above
A)the ability to solve problems?.
B)the ability to act rationally.
C)the ability to act like humans
D)all of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
15
Which of the following are Informed search algorithms?
A)best first search
B)a* search
C)iterative deeping search
D)both a & b
A)best first search
B)a* search
C)iterative deeping search
D)both a & b
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
16
If there is a solution, breadth first search is _______________to find it
A)difficult
B)guaranteed
C)not able to find
D)none of the above
A)difficult
B)guaranteed
C)not able to find
D)none of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
17
Which search strategy is combining the benefits of both BFS and DFS?
A)depth limited search
B)a*
C)iterative deepening depth first search
D)best first search
A)depth limited search
B)a*
C)iterative deepening depth first search
D)best first search
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
18
Admissibility of the heuristic function is given as:
A)h(n)>= h*(n)
B)h(n)< h*(n)
C)h(n)== h*(n)
D)h(n)<= h*(n)
A)h(n)>= h*(n)
B)h(n)< h*(n)
C)h(n)== h*(n)
D)h(n)<= h*(n)
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
19
The efficiency of A* algorithm depends on __________________________
A)depth
B)the quality of heuristic
C)unknown nodes
D)d. none of the above
A)depth
B)the quality of heuristic
C)unknown nodes
D)d. none of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
20
What is the termination criteria in Hill climbing?
A)when no successor of the node has better heuristic value.
B)when successor of the node has better heuristic value.
C)when no ancestor of the node has better heuristic value.
D)when ancestor of the node has better heuristic value.
A)when no successor of the node has better heuristic value.
B)when successor of the node has better heuristic value.
C)when no ancestor of the node has better heuristic value.
D)when ancestor of the node has better heuristic value.
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
21
What is true about variable neighborhood function?
A)neighbourhood functions that are sparse lead to quicker movement during search
B)algorithm has to inspect very fewer neighbours
C)vdn stars searching with sparse neighbourhood functions, when it reaches an optimum, it switches to denser function.
D)all of the above
A)neighbourhood functions that are sparse lead to quicker movement during search
B)algorithm has to inspect very fewer neighbours
C)vdn stars searching with sparse neighbourhood functions, when it reaches an optimum, it switches to denser function.
D)all of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
22
_______________________requires Linear Space but uses backtracking
A)breadth first search
B)recursive best first search (rbfs)
C)a*
D)ida*
A)breadth first search
B)recursive best first search (rbfs)
C)a*
D)ida*
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
23
Which property asks that the algorithm is locally admissible?
A)admissibility
B)monotonicity
C)informedness
D)none of the above
A)admissibility
B)monotonicity
C)informedness
D)none of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck
24
A* Search Algorithm _______________
A)does not expand the node which have the lowest value of f(n),
B)finds the shortest path through the search space using the heuristic function i.e f(n)=g(n) + h(n)
C)terminates when the goal node is not found.
D)all of the above
A)does not expand the node which have the lowest value of f(n),
B)finds the shortest path through the search space using the heuristic function i.e f(n)=g(n) + h(n)
C)terminates when the goal node is not found.
D)all of the above
Unlock Deck
Unlock for access to all 24 flashcards in this deck.
Unlock Deck
k this deck