Ai
Ai
Ai
“Agents”.
1. Which instruments are used for perceiving and acting upon the environment?
a) Sensors and Actuators
b) Sensors
c) Perceiver
d) None of the mentioned
View Answer
Answer: a
Explanation: An agent is anything that can be viewed as perceiving and acting upon the environment
through the sensors and actuators.
2. What is meant by agent’s percept sequence?
a) Used to perceive the environment
b) Complete history of actuator
c) Complete history of perceived things
d) None of the mentioned
View Answer
Answer: c
Explanation: An agent’s percept sequence is the complete history of everything that the agent has
ever perceived.
3. How many types of agents are there in artificial intelligence?
a) 1
b) 2
c) 3
d) 4
View Answer
Answer: d
Explanation: The four types of agents are Simple reflex, Model based, Goal based and Utility based
agents.
4. What is the rule of simple reflex agent?
a) Simple-action rule
b) Condition-action rule
c) Simple & Condition-action rule
d) None of the mentioned
View Answer
Answer: b
Explanation: Simple reflex agent is based on the present condition and so it is condition action rule.
5. What are the composition(WORK) for agents in artificial intelligence?
a) Program
b) Architecture
c) Both Program & Architecture
d) None of the mentioned
View Answer
Answer: c
Explanation: An agent program will implement function mapping percepts to actions.
6. In which agent does the problem generator is present?
a) Learning agent
b) Observing agent
c) Reflex agent
d) None of the mentioned
View Answer
Answer: a
Explanation: Problem generator will give the suggestion to improve the output for learning agent.
7. Which is used to improve the agents performance?
a) Perceiving
b) Learning
c) Observing
d) None of the mentioned
View Answer
Answer: b
Explanation: An agent can improve its performance by storing its previous actions.
8. Which agent deals with happy and unhappy states?
a) Simple reflex agent
b) Model based agent
c) Learning agent
d) Utility based agent
View Answer
Answer: d
Explanation: A utility function maps a state onto a real number which describes the associated
degree of happiness.
9. Which action sequences are used to achieve the agent’s goal?
a) Search
b) Plan
c) Retrieve
d) Both Search & Plan
View Answer
Answer: d
Explanation: When the environment becomes more tricky means, the agent needs plan and search
action sequence to achieve the goal.
10. Which element in agent are used for selecting external actions?
a) Perceive
b) Performance
c) Learning
d) Actuator
View Answer
Answer: b
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on
“Intelligent Agents and Environment”.
13. When the environment of an agent is partially observable in search space following
problem/problems could occur.
a) Sensorless problems: If the agent has no sensors at all, then (as far as it knows) it could be in one
of several possible initial states, and each action might therefore lead to one of several possible
successor states
b) Contingency problems: If the environment is partially observable or if actions are uncertain, then
the agent’s percepts provide new information after each action. Each possible percept defines a
contingency that must be planned for. A problem is called adversarial if the uncertainty is caused by
the actions of another agent
c) Exploration problems: When the states and actions of the environment are unknown, the agent
must act to discover them. Exploration problems can be viewed as an extreme case of contingency
problems
d) All of the mentioned
View Answer
Answer: d
Explanation: None.
14. For general graph, how one can get rid of repeated states?
a) By maintaining a list of visited vertices
b) By maintaining a list of traversed edges
c) By maintaining a list of non-visited vertices
d) By maintaining a list of non-traversed edges
View Answer
Answer: a
Explanation: Other techniques are costly.
15. DFS is ______ efficient and BFS is __________ efficient.
a) Space, Time
b) Time, Space
c) Time, Time
d) Space, Space
View Answer
Answer: a
Explanation: None.
16. The main idea of Bidirectional search is to reduce the time complexity by searching two way
simultaneously from start node and another from goal node.
a) True
b) False
View Answer
Answer: a
Explanation: The idea behind bidirectional search is to run two simultaneous searches-one forward
from the initial state and the other backward from the goal, stopping when the two searches meet in
the middle. The motivation is that bd/2 + bd/2 is much less than bd.
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on “Informed
Search Strategy”.
1. In many problems the path to goal is irrelevant, this class of problems can be solved using,
a) Informed Search Techniques
b) Uninformed Search Techniques
c) Local Search Techniques
d) Informed & Uninformed Search Techniques
View Answer
Answer: c
Explanation: If the path to the goal does not matter, we might consider a different class of algorithms,
ones that do not worry about paths at all. Local search algorithms operate using a single current
state (rather than multiple paths) and generally move only to neighbors of that state.
2. Though local search algorithms are not systematic, key advantages would include
a) Less memory
b) More time
c) Finds a solution in large infinite space
d) Less memory & Finds a solution in large infinite space
View Answer
Answer: d
Explanation: Two advantages: (1) they use very little memory-usually a constant amount; and (2)
they can often find reasonable solutions in large or infinite (continuous) state spaces for which
systematic algorithms are unsuitable.
3. A complete, local search algorithm always finds goal if one exists, an optimal algorithm always
finds a global minimum/maximum. State whether True or False.
a) True
b) False
View Answer
Answer: a
Explanation: An algorithm is complete if it finds a solution if exists and optimal if finds optimal goal
(minimum or maximum)
4. _______________ Is an algorithm, a loop that continually moves in the direction of increasing
value – that is uphill
a) Up-Hill Search
b) Hill-Climbing
c) Hill algorithm
d) Reverse-Down-Hill search
View Answer
Answer: b
Explanation: Refer the definition of Hill-Climbing approach.
5. Hill-Climbing algorithm terminates when,
a) Stopping criterion met
b) Global Min/Max is achieved
c) No neighbor has higher value
d) All of the mentioned
View Answer
Answer: c
Explanation: When no neighbor is having higher value, algorithm terminates fetching local min/max.
6. One of the main cons of hill-climbing search is,
a) Terminates at local optimum & Does not find optimum solution
b) Terminates at global optimum & Does not find optimum solution
c) Does not find optimum solution & Fail to find a solution
d) Fail to find a solution
View Answer
Answer: a
Explanation: Algorithm terminates at local optimum values, hence fails to find optimum solution.
7. Stochastic hill climbing chooses at random from among the uphill moves; the probability of
selection can vary with the steepness of the uphil1 move.
a) True
b) False
View Answer
Answer: a
Explanation: Refer to the definition of variants of hill-climbing search.
8. Hill climbing sometimes called ____________ because it grabs a good neighbor state without
thinking ahead about where to go next.
a) Needy local search
b) Heuristic local search
c) Greedy local search
d) Optimal local search
View Answer
Answer: c
Explanation: None.
9. Hill-Climbing approach stuck for the following reasons
a) Local maxima
b) Ridges
c) Plateaux
d) All of the mentioned
View Answer
Answer: d
Explanation: Local maxima: a local maximum is a peak that is higher than each of its neighboring
states, but lower than the global maximum. Ridges: Ridges result in a sequence of local maxima that
is very difficult for greedy algorithms to navigate. Plateaux: a plateau is an area of the state space
landscape where the evaluation function is flat.
10. ___________ algorithm keeps track of k states rather than just one.
a) Hill-Climbing search
b) Local Beam search
c) Stochastic hill-climbing search
d) Random restart hill-climbing search
View Answer
Answer: b
Explanation: Refer to the definition of Local Beam Search algorithm.
advertisement
11. A genetic algorithm (or GA) is a variant of stochastic beam search in which successor states are
generated by combining two parent states, rather than by modifying a single state.
a) True
b) False
View Answer
Answer: a
Explanation: Stochastic beam search, analogous to stochastic hill climbing, helps to alleviate this
problem. Instead of choosing the best k from the pool of candidate successors, stochastic beam
search chooses k successors at random, with the probability of choosing a given successor being an
increasing function of its value.
12. Mark two main features of Genetic Algorithm
a) Fitness function & Crossover techniques
b) Crossover techniques & Random mutation
c) Individuals among the population & Random mutation
d) Random mutation & Fitness function
View Answer
Answer: a
Explanation: Fitness function helps choosing individuals from the population and Crossover
techniques defines the offspring generated.
13. Searching using query on Internet is, use of ___________ type of agent
a) Offline agent
b) Online agent
c) Both Offline & Online agent
d) Goal Based & Online agent
View Answer
Answer: d
Explanation: Refer to the definitions of both the type of agent.
This set of Basic Artificial Intelligence Questions and Answers focuses on “Constraints Satisfaction
Problems”.
1. _________________ are mathematical problems defined as a set of objects whose state must
satisfy a number of constraints or limitations.
a) Constraints Satisfaction Problems
b) Uninformed Search Problems
c) Local Search Problems
d) All of the mentioned
View Answer
Answer: a
Explanation: Refer definition of CSPs.
2. Which of the Following problems can be modeled as CSP?
a) 8-Puzzle problem
b) 8-Queen problem
c) Map coloring problem
d) All of the mentioned
View Answer
Answer: d
Explanation: All of above problems involves constraints to be satisfied.
3. What among the following constitutes to the incremental formulation of CSP?
a) Path cost
b) Goal cost
c) Successor function
d) All of the mentioned
View Answer
Answer: d
Explanation: Initial state: The empty assignment ( ), in which all variables are unassigned.
Successor function: A value can be assigned to any unassigned variable, provided it does not
conflict with previously assigned variables.
Goal test: The current assignment is complete.
Path cost: A constant cost (e.g., 1) for every step.
4. The term ___________ is used for a depth-first search that chooses values for one variable at a
time and returns when a variable has no legal values left to assign.
a) Forward search
b) Backtrack search
c) Hill algorithm
d) Reverse-Down-Hill search
View Answer
Answer: b
Explanation: Refer definition of backtracking algorithm.
5. To overcome the need to backtrack in constraint satisfaction problem can be eliminated by
a) Forward Searching
b) Constraint Propagation
c) Backtrack after a forward search
d) Omitting the constraints and focusing only on goals
View Answer
Answer: a
Explanation: Forward Searching is technique in which a forward check till k steps is made to analyze
that the goal can be achieved satiating all constraints. With constraint propagation, constraints on a
variable can be propagated to next level/hierarchy and satisfied at that level, eliminating need to
backtrack.
6. The BACKTRACKING-SEARCH algorithm in Figure 5.3 has a very simple policy for what to do
when a branch of the search fails: back up to the preceding variable and try a different value for it.
This is called chronological-backtracking. It is also possible to go all the way to set of variable that
caused failure. State whether True or False.
a) True
b) False
View Answer
Answer: a
Explanation: Intelligent backtracking
7. Consider a problem of preparing a schedule for a class of student. This problem is a type of
a) Search Problem
b) Backtrack Problem
c) CSP
d) Planning Problem
View Answer
Answer: c
Explanation: Schedule developer needs to consider all constraints on teacher as well as students.
8. Constraint satisfaction problems on finite domains are typically solved using a form of
___________
a) Search Algorithms
b) Heuristic Search Algorithms
c) Greedy Search Algorithms
d) All of the mentioned
View Answer
Answer: d
Explanation: Any Search techniques can be used
9. Solving a constraint satisfaction problem on a finite domain is an/a ___________ problem with
respect to the domain size.
a) P complete
b) NP complete
c) NP hard
d) Domain dependent
View Answer
Answer: b
Explanation: None.
10. ____________ is/are useful when the original formulation of a problem is altered in some way,
typically because the set of constraints to consider evolves because of the environment.
a) Static CSPs
b) Dynamic CSPs
c) Flexible CSPs
d) None of the mentioned
View Answer
Answer: b
Explanation: Refer to the definition of Dynamic CSPs algorithm.
11. Flexible CSPs relax on _______
a) Constraints
b) Current State
c) Initial State
d) Goal State
View Answer
Answer: a
Explanation: Definition of flexible CSPs.
12. Language/Languages used for programming Constraint Programming includes
a) Prolog
b) C#
c) C
d) Fortrun
View Answer
Answer: a
Explanation: None.
advertisement
8. General algorithm applied on game tree for making decision of win/lose is ____________
a) DFS/BFS Search Algorithms
b) Heuristic Search Algorithms
c) Greedy Search Algorithms
d) MIN/MAX Algorithms
View Answer
Answer: d
Explanation: Given a game tree, the optimal strategy can be determined by examining the min/max
value of each node, which we write as MINIMAX- VALUE(n). The min/max value of a node is the
utility (for MAX) of being in the corresponding state, assuming that both players play optimally from
there to the end of the game. Obviously, the min/max value of a terminal state is just its utility.
Furthermore, given a choice, MAX will prefer to move to a state of maximum value, whereas MIN
prefers a state of minimum value.
9. The minimax algorithm (Figure 6.3) computes the minimax decision from the current state. It uses
a simple recursive computation of the minimax values of each successor state, directly implementing
the defining equations. The recursion proceeds all the way down to the leaves of the tree, and then
the minimax values are backed up through the tree as the recursion unwinds.
a) True
b) False
View Answer
Answer: a
Explanation: Refer definition of minimax algorithm.
10. The complexity of minimax algorithm is
a) Same as of DFS
b) Space – bm and time – bm
c) Time – bm and space – bm
d) Same as BFS
View Answer
Answer: a
Explanation: Same as DFS.
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on “State
Space Search”.
1. Which search is equal to minimax search but eliminates the branches that can’t influence the final
decision?
a) Depth-first search
b) Breadth-first search
c) Alpha-beta pruning
d) None of the mentioned
View Answer
Answer: c
Explanation: The alpha-beta search computes the same optimal moves as minimax, but eliminates
the branches that can’t influence the final decision.
2. Which values are independant in minimax search algorithm?
a) Pruned leaves x and y
b) Every states are dependant
c) Root is independant
d) None of the mentioned
View Answer
Answer: a
Explanation: The minimax decision are independant of the values of the pruned values x and y
because of the root values.
3. To which depth does the alpha-beta pruning can be applied?
a) 10 states
b) 8 States
c) 6 States
d) Any depth
View Answer
Answer: d
Explanation: Alpha–beta pruning can be applied to trees of any depth and it is possible to prune
entire subtree rather than leaves.
4. Which search is similar to minimax search?
a) Hill-climbing search
b) Depth-first search
c) Breadth-first search
d) All of the mentioned
View Answer
Answer: b
Explanation: The minimax search is depth-first search, So at one time we just have to consider the
nodes along a single path in the tree.
5. Which value is assigned to alpha and beta in the alpha-beta pruning?
a) Alpha = max
b) Beta = min
c) Beta = max
d) Both Alpha = max & Beta = min
View Answer
Answer: d
Explanation: Alpha and beta are the values of the best choice we have found so far at any choice
point along the path for MAX and MIN.
6. Where does the values of alpha-beta search get updated?
a) Along the path of search
b) Initial state itself
c) At the end
d) None of the mentioned
View Answer
Answer: a
Explanation: Alpha-beta search updates the value of alpha and beta as it gets along and prunes the
remaining branches at node.
7. How the effectiveness of the alpha-beta pruning gets increased?
a) Depends on the nodes
b) Depends on the order in which they are executed
c) All of the mentioned
d) None of the mentioned
View Answer
Answer: a
Explanation: None.
8. What is called as transposition table?
a) Hash table of next seen positions
b) Hash table of previously seen positions
c) Next value in the search
d) None of the mentioned
View Answer
Answer: b
Explanation: Transposition is the occurrence of repeated states frequently in the search.
9. Which is identical to the closed list in Graph search?
a) Hill climbing search algorithm
b) Depth-first search
c) Transposition table
d) None of the mentioned
View Answer
Answer: c
Explanation: None.
10. Which function is used to calculate the feasibility of whole game tree?
a) Evaluation function
b) Transposition
c) Alpha-beta pruning
d) All of the mentioned
View Answer
Answer: a
Explanation: Because we need to cut the search off at some point and apply an evaluation function
that gives an estimate of the utility of the state.
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on “First-
Order Logic”.
1. There exist only two types of quantifiers, Universal Quantification and Existential Quantification.
a) True
b) False
View Answer
Answer: a
Explanation: None.
2. Translate the following statement into FOL.
“For every a, if a is a philosopher, then a is a scholar”
a) ∀ a philosopher(a) scholar(a)
b) ∃ a philosopher(a) scholar(a)
c) All of the mentioned
d) None of the mentioned
View Answer
Answer: a
Explanation: None.
3. A _________ is used to demonstrate, on a purely syntactic basis, that one formula is a logical
consequence of another formula.
a) Deductive Systems
b) Inductive Systems
c) Reasoning with Knowledge Based Systems
d) Search Based Systems
View Answer
Answer: a
Explanation: Refer the definition of Deductive based systems.
4. The statement comprising the limitations of FOL is/are
a) Expressiveness
b) Formalizing Natural Languages
c) Many-sorted Logic
d) All of the mentioned
View Answer
Answer: d
Explanation:
Expressiveness: The Löwenheim–Skolem theorem shows that if a first-order theory has any infinite
model, then it has infinite models of every cardinality. In particular, no first-order theory with an
infinite model can be categorical. Thus there is no first-order theory whose only model has the set of
natural numbers as its domain, or whose only model has the set of real numbers as its domain.
Many extensions of first-order logic, including infinitely logics and higher-order logics, are more
expressive in the sense that they do permit categorical axiomatizations of the natural numbers or
real numbers. This expressiveness comes at a meta-logical cost, however: by Lindström’s theorem,
the compactness theorem and the downward Löwenheim–Skolem theorem cannot hold in any logic
stronger than first-order.
Formalizing Natural Languages : First-order logic is able to formalize many simple quantifier
constructions in natural language, such as “every person who lives in Perth lives in Australia”. But
there are many more complicated features of natural language that cannot be expressed in (single-
sorted) first-order logic.
Many-sorted Logic: Ordinary first-order interpretations have a single domain of discourse over which
all quantifiers range. Many-sorted first-order logic allows variables to have different sorts, which have
different domains.
5. A common convention is:
• is evaluated first
• and are evaluated next
• Quantifiers are evaluated next
• is evaluated last.
a) True
b) False
View Answer
Answer: a
Explanation: None.
6. A Term is either an individual constant (a 0-ary function), or a variable, or an n-ary function applied
to n terms: F(t1 t2 ..tn).
a) True
b) False
View Answer
Answer: a
Explanation: Definition of term in FOL.
7. First Order Logic is also known as ___________
a) First Order Predicate Calculus
b) Quantification Theory
c) Lower Order Calculus
d) All of the mentioned
View Answer
Answer: d
Explanation: None.
advertisement
8. 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
View Answer
Answer: c
Explanation: None.
his set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on
“Propositional Logic”.
1. Which algorithm will work backward from the goal to solve a problem?
a) Forward chaining
b) Backward chaining
c) Hill-climb algorithm
d) None of the mentioned
View Answer
Answer: b
Explanation: Backward chaining algorithm will work backward from the goal and it will chain the
known facts that support the proof.
2. Which is mainly used for automated reasoning?
a) Backward chaining
b) Forward chaining
c) Logic programming
d) Parallel programming
View Answer
Answer: c
Explanation: Logic programming is mainly used to check the working process of the system.
3. What will backward chaining algorithm will return?
a) Additional statements
b) Substitutes matching the query
c) Logical statement
d) All of the mentioned
View Answer
Answer: b
Explanation: It will contains the list of goals containing a single element and returns the set of all
substitutions satisfying the query.
4. How can be the goal is thought of in backward chaining algorithm?
a) Queue
b) List
c) Vector
d) Stack
View Answer
Answer: d
Explanation: The goals can be thought of as stack and if all of them us satisfied means, then current
branch of proof succeeds.
5. What are used in backward chaining algorithm?
a) Conjuncts
b) Substitution
c) Composition of substitution
d) None of the mentioned
View Answer
Answer: c
Explanation: None
6. Which algorithm are in more similar to backward chaining algorithm?
a) Depth-first search algorithm
b) Breadth-first search algorithm
c) Hill-climbing search algorithm
d) All of the mentioned
View Answer
Answer: a
Explanation: It is depth-first search algorithm because its space requirements are linear in the size of
the proof.
7. Which problem can frequently occur in backward chaining algorithm?
a) Repeated states
b) Incompleteness
c) Complexity
d) Both Repeated states & Incompleteness
View Answer
Answer: d
Explanation: If there is any loop in the chain means, It will lead to incompleteness and repeated
states.
8. How the logic programming can be constructed?
a) Variables
b) Expressing knowledge in a formal language
c) Graph
d) All of the mentioned
View Answer
Answer: b
Explanation: Logic programming can be constructed by expressing knowledge in a formal
expression and the problem can be solved by running inference process.
9. What form of negation does the prolog allows?
a) Negation as failure
b) Proposition
c) Substitution
d) Negation as success
View Answer
Answer: a
Explanation: None
10. Which is omitted in prolog unification algorithm?
a) Variable check
b) Occur check
c) Proposition check
d) Both Occur & Proposition check
View Answer
Answer: b
Explanation: Occur check is omitted in prolog unification algorithm because of unsound inferences.
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on
“Knowledge and Reasoning”.
1. Knowledge and reasoning also play a crucial role in dealing with __________________
environment.
a) Completely Observable
b) Partially Observable
c) Neither Completely nor Partially Observable
d) Only Completely and Partially Observable
View Answer
Answer: b
Explanation: Knowledge and reasoning could aid to reveal other factors that could complete
environment.
2. Treatment chosen by doctor for a patient for a disease is based on
a) Only current symptoms
b) Current symptoms plus some knowledge from the textbooks
c) Current symptoms plus some knowledge from the textbooks plus experience
d) All of the mentioned
View Answer
Answer: c
Explanation: None.
3. A knowledge-based agent can combine general knowledge with current percepts to infer hidden
aspects of the current state prior to selecting actions. State whether True or False.
a) True
b) False
View Answer
Answer: a
Explanation: Refer definition of Knowledge based agents.
4. A) Knowledge base (KB) is consists of set of statements.
B) Inference is deriving a new sentence from the KB.
Choose the correct option.
a) A is true, B is true
b) A is false, B is false
c) A is true, B is false
d) A is false, B is true
View Answer
Answer: a
Explanation: None.
5. Wumpus World is a classic problem, best example of _______
a) Single player Game
b) Two player Game
c) Reasoning with Knowledge
d) Knowledge based Game
View Answer
Answer: c
Explanation: Refer the definition of Wumpus World Problem.
6. ‘α |= β ‘(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
View Answer
Answer: a
Explanation: Refer the definition of law of entailment.
7. Which is not a property of representation of knowledge?
a) Representational Verification
b) Representational Adequacy
c) Inferential Adequacy
d) Inferential Efficiency
View Answer
Answer: a
Explanation: None.
advertisement
1. The rule of Universal Instantiation (UI for short) says that we can infer any sentence obtained by
substituting a ground term (a term without variables) for the variable.
a) True
b) False
View Answer
Answer: a
Explanation: Rule of universal instantiation.
2. The corresponding Existential Instantiation rule: for the existential quantifier is slightly more
complicated. For any sentence a, variable v, and constant symbol k that does not appear elsewhere
in the knowledge base
a) True
b) False
View Answer
Answer: a
Explanation: Rule of existential instantiation.
3. What among the following could the universal instantiation of ___________
For all x King(x) ^ Greedy(x) => Evil(x)
a) King(John) ^ Greedy(John) => Evil(John)
b) King(y) ^ Greedy(y) => Evil(y)
c) King(Richard) ^ Greedy(Richard) => Evil(Richard)
d) All of the mentioned
View Answer
Answer: d
Explanation: Refer the definition if universal instantiation.
4. Lifted inference rules require finding substitutions that make different logical expressions looks
identical.
a) Existential Instantiation
b) Universal Instantiation
c) Unification
d) Modus Ponen
View Answer
Answer: c
Explanation: None.
5. Which of the following is not the style of inference?
a) Forward Chaining
b) Backward Chaining
c) Resolution Refutation
d) Modus Ponen
View Answer
Answer: d
Explanation: Modus ponen is a rule for an inference.
6. In order to utilize generalized Modus Ponens, all sentences in the KB must be in the form of Horn
sentences.
a) True
b) False
View Answer
Answer: a
Explanation: None.
7. For resolution to apply, all sentences must be in conjunctive normal form, a conjunction of
disjunctions of literals.
a) True
b) False
View Answer
Answer: a
Explanation: None.
advertisement
1. The process by which the brain incrementally orders actions needed to complete a specific task is
referred as,
a) Planning problem
b) Partial order planning
c) Total order planning
d) Both Planning problem & Partial order planning
View Answer
Answer: b
Explanation: Definition of partial order planning.
2. To complete any task, the brain needs to plan out the sequence by which to execute the behavior.
One way the brain does this is with a partial-order plan. State whether true or false.
a) True
b) False
View Answer
Answer: a
Explanation: None.
3. In partial order plan.
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
Choose the correct option.
a) A is true
b) B is true
c) Either A or B can be true depending upon situation
d) Neither A nor B is true
View Answer
Answer: a
Explanation: Relationship between behavior and actions is established dynamically.
4. Partial-order planning exhibits the Principle of Least Commitment, which contributes to the
efficiency of this planning system as a whole.
a) True
b) False
View Answer
Answer: a
Explanation: None.
5. Following is/are the components of the partial order planning.
a) Bindings
b) Goal
c) Causal Links
d) All of the mentioned
View Answer
Answer: d
Explanation: Bindings: The bindings of the algorithm are the connections between specific variables
in the action. Bindings, as ordering, only occur when it is absolutely necessary.
Causal Links: Causal links in the algorithm are those that categorically order actions. They are not
the specific order (1,2,3) of the actions, rather the general order as in Action 2 must come
somewhere after Action 1, but before Action 2.
Plan Space: The plan space of the algorithm is constrained between its start and finish. The
algorithm starts, producing the initial state and finishes when all parts of the goal is been achieved.
6. Partial-order planning is the opposite of total-order planning.
a) True
b) False
View Answer
Answer: a
Explanation: Partial-order planning is the opposite of total-order planning, in which actions are
sequenced all at once and for the entirety of the task at hand.
7. Sussman Anomaly can be easily and efficiently solved by partial order planning.
a) True
b) False
View Answer
Answer: a
Explanation: http://en.wikipedia.org/wiki/Sussman_Anomaly.
8. Sussman Anomaly illustrates a weakness of interleaved planning algorithm.
a) True
b) False
View Answer
Answer: b
Explanation: Sussman Anomaly illustrates a weakness of non interleaved planning algorithm.
9. One the main drawback of this type of planning system is that it requires a lot of computational
powers at each node.
a) True
b) False
View Answer
Answer: a
Explanation: None.
10. What are you predicating by the logic: ۷ x: €y: loyalto(x, y).
a) Everyone is loyal to someone
b) Everyone is loyal to all
c) Everyone is not loyal to someone
d) Everyone is loyal
View Answer
Answer: a
Explanation: ۷ x denotes Everyone or all, and €y someone and loyal to is the proposition logic
making map x to y.
advertisement
11. A plan that describe how to take actions in levels of increasing refinement and specificity is
a) Problem solving
b) Planning
c) Non-hierarchical plan
d) Hierarchical plan
View Answer
Answer: d
Explanation: A plan that describes how to take actions in levels of increasing refinement and
specificity is Hierarchical (e.g., “Do something” becomes the more specific “Go to work,” “Do work,”
“Go home.”) Most plans are hierarchical in nature.
12. A constructive approach in which no commitment is made unless it is necessary to do so, is
a) Least commitment approach
b) Most commitment approach
c) Nonlinear planning
d) Opportunistic planning
View Answer
Answer: a
Explanation: Because we are not sure about the outcome.
13. Uncertainty arises in the Wumpus world because the agent’s sensors give only
a) Full & Global information
b) Partial & Global Information
c) Partial & local Information
d) Full & local information
View Answer
Answer: c
Explanation: The Wumpus world is a grid of squares surrounded by walls, where each square can
contain agents and objects. The agent (you) always starts in the lower left corner, a square that will
be labeled [1, 1]. The agent’s task is to find the gold, return to [1, 1] and climb out of the cave.
Therefore, uncertainty is there as the agent gives partial and local information only. Global variable
are not goal specific problem solving.
his set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on “Partial
Order Planning – 1”.
This set of Artificial Intelligence Multiple Choice Questions & Answers (MCQs) focuses on “Artificial
Intelligence Agents”.
1. When talking to a speech recognition program, the program divides each second of your speech
into 100 separate:
a) Codes
b) Phonemes
c) Samples
d) Words
View Answer
Answer: c
Explanation: None.
2. Which term is used for describing the judgmental or commonsense part of problem solving?
a) Heuristic
b) Critical
c) Value based
d) Analytical
View Answer
Answer: a
Explanation: None.
3. Which stage of the manufacturing process has been described as “the mapping of function onto
form”?
a) Design
b) Distribution
c) Project management
d) Field service
View Answer
Answer: a
Explanation: None.
4. Which kind of planning consists of successive representations of different levels of a plan?
a) hierarchical planning
b) non-hierarchical planning
c) all of the mentioned
d) project planning
View Answer
Answer: a
Explanation: None.
5. What was originally called the “imitation game” by its creator?
a) The Turing Test
b) LISP
c) The Logic Theorist
d) Cybernetics
View Answer
Answer: a
Explanation: None.
6. Decision support programs are designed to help managers make:
a) budget projections
b) visual presentations
c) business decisions
d) vacation schedules
View Answer
Answer: c
Explanation: None.
7. PROLOG is an AI programming language, which solves problems with a form of symbolic logic
known as predicate calculus. It was developed in 1972 at the University of Marseilles by a team of
specialists. Can you name the person who headed this team?
a) Alain Colmerauer
b) Niklaus Wirth
c) Seymour Papert
d) John McCarthy
View Answer
Answer: a
Explanation: None.
8. Programming a robot by physically moving it through the trajectory you want it to follow be called:
a) contact sensing control
b) continuous-path control
c) robot vision control
d) pick-and-place control
View Answer
Answer: b
Explanation: None.
9. To invoke the LISP system, you must enter
a) AI
b) LISP
c) CL (Common Lisp)
d) Both LISP and CL
View Answer
Answer: b
Explanation: None.
10. In LISP, the function (list-length <list>)
a) returns a new list that is equal to <:list> by copying the top-level element of <list>
b) returns the length of <list>
c) returns t if <list> is empty
d) all of the mentioned
View Answer
Answer: b
Explanation: None.
11. ART (Automatic Reasoning Tool) is designed to be used on:
a) LISP machines
b) Personal computers
c) Microcomputers
d) All of the mentioned
View Answer
Answer: a
Explanation: None.
12. Which particular generation of computers is associated with artificial intelligence?
a) Second
b) Fourth
c) Fifth
d) Third
View Answer
Answer: c
Explanation: None.
his set of Artificial Intelligence Questions and Answers for Freshers focuses on “Facts –
2”.
1. Ambiguity may be caused by:
a) syntactic ambiguity
b) multiple word meanings
c) unclear antecedents
d) all of the mentioned
View Answer
Answer: d
Explanation: None.
2. Which company offers the LISP machine considered “the most powerful symbolic
processor available”?
a) LMI
b) Symbolics
c) Xerox
d) Texas Instruments
View Answer
Answer: b
Explanation: None.
3. What of the following is considered a pivotal event in the history of Artificial
Intelligence?
a) 1949, Donald O, The organization of Behavior
b) 1950, Computing Machinery and Intelligence
c) 1956, Dartmouth University Conference Organized by John McCarthy
d) 1961, Computer and Computer Sense
View Answer
Answer: c
Explanation: None.
4. Natural language processing is divided into the two subfields of:
a) symbolic and numeric
b) time and motion
c) algorithmic and heuristic
d) understanding and generation
View Answer
Answer: c
Explanation: None.
5. High-resolution, bit-mapped displays are useful for displaying:
a) clearer characters
b) graphics
c) more characters
d) all of the mentioned
View Answer
Answer: c
Explanation: None.
6. A bidirectional feedback loop links computer modeling with:
a) artificial science
b) heuristic processing
c) human intelligence
d) cognitive science
View Answer
Answer: c
Explanation: None.
7. Which of the following have people traditionally done better than computers?
a) recognizing relative importance
b) finding similarities
c) resolving ambiguity
d) all of the mentioned
View Answer
Answer: c
Explanation: None.
8. In LISP, the function evaluates both and is
a) set
b) setq
c) add
d) eva
View Answer
Answer: a
Explanation: None.
9. Which type of actuator generates a good deal of power but tends to be messy?
a) electric
b) hydraulic
c) pneumatic
d) both hydraulic & pneumatic
View Answer
Answer: b
Explanation: None.
10. Research scientists all over the world are taking steps towards building computers
with circuits patterned after the complex interconnections existing among the human
brain’s nerve cells. What name is given to such type of computers?
a) Intelligent computers
b) Supercomputers
c) Neural network computers
d) Smart computers
View Answer
Answer: c
Explanation: None.
This set of Artificial Intelligence Interview Questions and Answers focuses on “Facts – 3”.
1. Nils Nilsson headed a team at SRI that created a mobile robot named:
a) Robotics
b) Dedalus
c) Shakey
d) Vax
View Answer
Answer: c
Explanation: None.
2. An Artificial Intelligence technique that allows computers to understand associations and
relationships between objects and events is called:
a) heuristic processing
b) cognitive science
c) relative symbolism
d) pattern matching
View Answer
Answer: c
Explanation: None.
3. The new organization established to implement the Fifth Generation Project is called:
a) ICOT (Institute for New Generation Computer Technology)
b) MITI (Ministry of International Trade and Industry)
c) MCC (Microelectronics and Computer Technology Corporation)
d) SCP (Strategic Computing Program)
View Answer
Answer: a
Explanation: None.
4. The field that investigates the mechanics of human intelligence is:
a) history
b) cognitive science
c) psychology
d) sociology
View Answer
Answer: b
Explanation: None.
5. What is the name of the computer program that simulates the thought processes of human
beings?
a) Human logic
b) Expert reason
c) Expert system
d) Personal information
View Answer
Answer: c
Explanation: None.
6. What is the name of the computer program that contains the distilled knowledge of an expert?
a) Database management system
b) Management information System
c) Expert system
d) Artificial intelligence
View Answer
Answer: c
Explanation: None.
7. Claude Shannon described the operation of electronic switching circuits with a system of
mathematical logic called:
a) LISP
b) XLISP
c) Neural networking
d) Boolean algebra
View Answer
Answer: c
Explanation: None.
8. A computer program that contains expertise in a particular domain is called an:
a) intelligent planner
b) automatic processor
c) expert system
d) operational symbolizer
View Answer
Answer: c
Explanation: None.
9. What is the term used for describing the judgmental or commonsense part of problem solving?
a) Heuristic
b) Critical
c) Value based
d) Analytical
View Answer
Answer: a
Explanation: None.
10. What was originally called the “imitation game” by its creator?
a) The Turing Test
b) LISP
c) The Logic Theorist
d) Cybernetics
View Answer
Answer: a
Explanation: None.
advertisement