Ai Set 1 Main
Ai Set 1 Main
10. What among the following is/are the example of the intelligent agent/agents?
a) Human
b) Robot
c) Autonomous Spacecraft
d) All of the mentioned
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
10. Which element in agent are used for selecting external actions?
a) Perceive
b) Performance
c) Learning
d) Actuator
3. Artificial Intelligence has its expansion in the following application. (Mark all
that apply)
a) Planning and Scheduling
b) Game Playing
c) Diagnosis
d) All of the mentioned
6. Rational agent is the one who always does the right thing. State true or false
a) True
b) False
7. Performance Measures are fixed for all agents. State true or false
a) True
b) False
8. What is rational at any given time depends on
a) The performance measure that defines the criterion of success
b) The agent’s prior knowledge of the environment
c) The actions that the agent can perform
d) All of the mentioned
9. An omniscient agent knows the actual outcome of its actions and can act
accordingly; but omniscience is impossible in reality. Rational Agent always does
the right thing; but Rationality is possible in reality. State true or false
a) True
b) False
11. What could possibly be the environment of a Satellite Image Analysis System?
a) Computers in space and earth
b) Image categorization techniques
c) Statistical data on image pixel intensity value and histograms
d) All of the mentioned
14. Satellite Image Analysis System is (Choose the one that is not applicable).
a) Episodic
b) Semi-Static
c) Single agent
d) Partially Observable
Agent Architecture
1. Which depends on the percepts and actions available to the agent?
a) Agent
b) Sensor
c) Design problem
d) None of the mentioned
2. Which were built in such a way that humans had to supply the inputs and
interpret the outputs?
a) Agents
b) AI system
c) Sensor
d) Actuators
8. Specify the agent architecture name that is used to capture all kinds of actions.
a) Complex
b) Relational
c) Hybrid
d) None of the mentioned
9. Which agent enables the deliberation about the computational entities and
actions?
a) Hybrid
b) Reflective
c) Relational
d) None of the mentioned
Environments
1. What is the action of task environment in artificial intelligence?
a) Problem
b) Solution
c) Agent
d) Observation
Problem Solving
1. The main task of a problem-solving agent is
a) Solve the given problem and reach to goal
b) To find out which sequence of action will get it to the goal state
c) All of the mentioned
d) None of the mentioned
7. A solution to a problem is a path from the initial state to a goal state. Solution
quality is measured by the path cost function, and an optimal solution has the
highest path cost among all solutions. State whether true or false.
a) True
b) False
10. The _______ is a touring problem in which each city must be visited exactly
once. The aim is to find the shortest tour.
a) Finding shortest path between a source and a destination
b) Travelling Salesman problem
c) Map coloring problem
d) Depth first search traversal on a given map represented as a graph
10. Which search implements stack operation for searching the states?
a) Depth-limited search
b) Depth-first search
c) Breadth-first search
d) None of the mentioned
2. Strategies that know whether one non-goal state is “more promising” than
another are called
a) Informed & Unformed Search
b) Unformed Search
c) Heuristic & Unformed Search
d) Informed & Heuristic Search
3. Which of the following is/are Uninformed Search technique/techniques
a) Breadth First Search (BFS)
b) Depth First Search (DFS)
c) Bidirectional Search
d) All of the mentioned
6. The time and space complexity of BFS is (For time and space complexity
problems consider b as branching factor and d as depth of the search tree.)
a) O(bd+1) and O(bd+1)
b) O(b2) and O(d2)
c) O(d2) and O(b2)
d) O(d2) and O(d2)
7. Breadth-first search is not optimal when all step costs are equal, because it
always expands the shallowest unexpanded node. State whether true or false.
a) True
b) False
9. Depth-first search always expands the ______ node in the current fringe of the
search tree.
a) Shallowest
b) Child node
c) Deepest
d) Minimum cost
10. Breadth-first search always expands the ______ node in the current fringe of
the search tree.
a) Shallowest
b) Child node
c) Deepest
d) Minimum cost
3. Which search uses the problem specific knowledge beyond the definition of the
problem?
a) Informed search
b) Depth-first search
c) Breadth-first search
d) Uninformed search
4. Which function will select the lowest expansion node at first for evaluation?
a) Greedy best-first search
b) Best-first search
c) Depth-first search
d) None of the mentioned
10. Which search method will expand the node that is closest to the goal?
a) Best-first search
b) Greedy best-first search
c) A* search
d) None of the mentioned
2. A* algorithm is based on
a) Breadth-First-Search
b) Depth-First –Search
c) Best-First-Search
d) Hill climbing
7. The name “best-first search” is a venerable but inaccurate one. After all, if we
could really expand the best node first, it would not be a search at all; it would be a
straight march to the goal. All we can do is choose the node that appears to be best
according to the evaluation function. State whether true or false.
a) True
b) False
13. A* is optimal if h(n) is an admissible heuristic-that is, provided that h(n) never
underestimates the cost to reach the goal.
a) True
b) False
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
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
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
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
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
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
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
16. Which of the following algorithm is generally used CSP search algorithm?
a) Breadth-first search algorithm
b) Depth-first search algorithm
c) Hill-climbing search algorithm
d) None of the mentioned
10. Which approach is to pretend that a pure divide and conquer algorithm will
work?
a) Goal independence
b) Subgoal independence
c) Both Goal & Subgoal independence
d) None of the mentioned
First-Order Logic
1. There exist only two types of quantifiers, Universal Quantification and
Existential Quantification.
a) True
b) False
Propositional Logic
1. Which is created by using single propositional symbol?
a) Complex sentences
b) Atomic sentences
c) Composition sentences
d) None of the mentioned
View Answer
2. Which is used to construct the complex sentences?
a) Symbols
b) Connectives
c) Logical connectives
d) All of the mentioned
Resolution
1. Which is a refutation complete inference procedure for propositional logic?
a) Clauses
b) Variables
c) Propositional resolution
d) Proposition
Expert Systems
1. In LISP, the function returns t if <integer> is even and nil otherwise:
a) (evenp <integer>)
b) (even <integer>)
c) (numeven <integer>)
d) (numnevenp <integer>)
2. Which of the following is an advantage of using an expert system development
tool?
a) imposed structure
b) knowledge engineering assistance
c) rapid prototyping
d) all of the mentioned
4. The “Turing Machine” showed that you could use a/an _____ system to program
any algorithmic task.
a) binary
b) electro-chemical
c) recursive
d) semantic
10. In LISP, the function evaluates <object> and assigns this value to the
unevaluated <sconst>.
a) (constant <sconst> <object>)
b) (defconstant <sconst> <object>)
c) (eva <sconst> <object>)
d) (eva <object> <sconst>)
5. An expert system differs from a database program in that only an expert system:
a) contains declarative knowledge
b) contains procedural knowledge
c) features the retrieval of stored information
d) expects users to draw their own conclusions
Machine Learning
1. Machine learning is
a) The autonomous acquisition of knowledge through the use of computer
programs
b) The autonomous acquisition of knowledge through the use of manual programs
c) The selective acquisition of knowledge through the use of computer programs
d) The selective acquisition of knowledge through the use of manual programs
2. Factors which affect the performance of learner system does not include
a) Representation scheme used
b) Training scenario
c) Type of feedback
d) Good data structures
Forward Chaining
1. Which condition is used to cease the growth of forward chaining?
a) Atomic sentences
b) Complex sentences
c) No further inference
d) All of the mentioned
7. How to eliminate the redundant rule matching attempts in the forward chaining?
a) Decremental forward chaining
b) Incremental forward chaining
c) Data complexity
d) None of the mentioned
8. From where did the new fact inferred on new iteration is derived?
a) Old fact
b) Narrow fact
c) New fact
d) All of the mentioned
9. Which will solve the conjuncts of the rule so that the total cost is minimized?
a) Constraint variable
b) Conjunct ordering
c) Data complexity
d) All of the mentioned
10. How many possible sources of complexity are there in forward chaining?
a) 1
b) 2
c) 3
d) 4
Backward Chaining
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
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
7. Which is not a property of representation of knowledge?
a) Representational Verification
b) Representational Adequacy
c) Inferential Adequacy
d) Inferential Efficiency
10. An inference algorithm that derives only entailed sentences is called sound or
truth-preserving.
a) True
b) False