CS8691 AI Model Exam Answer Key
CS8691 AI Model Exam Answer Key
CS8691 AI Model Exam Answer Key
(Regulations 2017)
Time: 3 Hours Answer ALL Questions Max. Marks 100
PART- A (10 x 2 = 20 Marks)
1.
What are the applications of AI?
i. Airline travel problem.
ii. Touring problem.
iii. Traveling salesman problem.
iv. VLSI Layout problem
v. Robot navigation
vi. Automatic Assembly
vii. Internet searching
2.
Name the elements of an agent and list out the characteristics of Intelligent agent.
Situatedness
The agent receives some form of sensory input from its environment, and it performs some action
that changes its environment in some way. Examples of environments: the physical world and the
Internet.
Autonomy
The agent can act without direct intervention by humans or other agents and that it has control
over its own actions and internal state.
Adaptivity
The agent is capable of (1) reacting flexibly to changes in its environment; (2) taking goal-
directed initiative (i.e., is pro-active), when appropriate; and (3) learning from its own
experience, its environment, and interactions with others.
Sociability
The agent is capable of interacting in a peer-to-peer manner with other agents or humans.
3.
Differentiate between uninformed and informed search algorithms.
An uninformed search is a searching technique that has no additional information about the
distance from the current state to the goal.
Informed Search is another technique that has additional information about the estimate distance
from the current state to the goal.
4.
List out the classification of CSP with respect to constraints.
There are 5 types,
a. Unary constraints relates one variable.
b. A binary constraint relates two variables.
c. Higher order constraints relate more than two variables.
d. Absolute constraints.
e. Preference constraints.
5.
Compare forward chaining and backward chaining.
Forward chaining as the name suggests, start from the known facts and move forward by applying
inference rules to extract more data, and it continues until it reaches to the goal, whereas backward
chaining starts from the goal, move backward by using inference rules to determine the facts that
satisfy the goal.
Forward chaining is called a data-driven inference technique, whereas backward chaining is called a
goal-driven inference technique.
6.
What are the elements and symbols of first order logic?
Symbols and Interpretations:
• The basic syntactic elements of first-order logic are the symbols that stand for objects, relations
and functions
Kinds of Symbols
• The symbols come in three kinds namely,
Constant Symbols standing for Objects (Ex:- Richard)
Predicate Symbols standing for Relations (Ex:- King)
Function Symbols stands for functions (Ex:- LeftLeg)
7.
What is a software agent?
Agent architectures, like software architectures, are formally a description of the elements from
which a system is built and the manner in which they communicate. Further, these elements can be
defined from patterns with specific constraints
8.
What do you understand about the term agent communication?
In the domain of multi-agent systems, communication is an important characteristic to support both
coordination and the transfer of information. Agents also require the ability to communicate actions
or plans. But how the communication takes place is a function of its purpose.
1. Agents communicate in order to achieve better the goals of themselves or of the society/system in
which they exist.
2. Communication can enable the agents to coordinate their actions and behavior, resulting in
systems that are more coherent.
9.
State the advantages of horizontal layered architectures.
In horizontally layered architectures (Figure 1.6(a)), the software layers are each directly connected
to the sensory input and action output. In effect, each layer itself acts like an agent,producing
suggestions as to what action to perform.
10.
Define Ontology.
The definition of Ontology states that it is the study of existence. Ontology is part of the school of
thought of philosophy and more closely a branch of metaphysics, which investigates the nature of
things including their cause and identity.
PART- B (5 x 16 = 80 Marks)
11. Define Artificial Intelligence (AI). Explain the techniques of AI and describe 16
the characteristics of AI.
Artificial Intelligence is the branch of computer science concerned with making computers
behave like humans.
Systems that think like humans Systems that think rationally
“The exciting new effort to make computers think “The study of mental faculties through the use of
… machines with minds,in the full and literal computer models.”
sense.”(Haugeland,1985) (Charniak and McDermont,1985)
12.
i) Define Heuristic search. What are the advantages of Heuristic search? 3
A heuristic function or simply a heuristic is a function that ranks alternatives in various search
algorithms at each branching step basing on an available information in order to make a decision
which branch is to be followed during a search
ii) Describe the mini max algorithm with an example. 13
An algorithm for minimax decision