-
Which were built in such a way that humans supply the inputs and interpret the outputs?
- Agents
- AI system
- Sensor
- Actuators
Answer : Option ( b ) -
The test conducted finds out whether a machine's ability to think is equivalent to, or indistinguishable from, that of a human, known as
- Artificial Intelligence
- Turing Test
- Eliza
- None of these
Answer : Option ( b ) -
What type of AI system is able to perform a dedicated task with intelligence____?
- General AI
- Narrow AI
- Strong AI
- All of these
Answer : Option ( b ) -
we have to design an Artificial Intelligence system, which having short period of time and less storage system to store past experience, in which category this AI system falls
- Reactive Memory
- Limited Memory Type 2
- Theory of Mind
- none of these
Answer : Option ( b ) -
When we have to design an intelligent agents, what instruments are required for perceiving and acting upon the environments?
- sensors
- actuators
- perceivers
- both a and b
Answer : Option ( d ) -
An agent which is based on current situations and do not perceives from past experience, then the agent is defined as
- Goal-based agent
- utility based agent
- situation action rule
- none of these
Answer : Option ( c ) -
A function that maps a state or sequence of states, by measuring an agent over the long run based on its happy or unhappy states_____
- simple reflex agent
- Goal based agent
- utility based agent
- none of these
Answer : Option ( c ) -
If an organization has developed an agent and they have to improve the performance of their agent. Then which approach used to improve their agent performance
- perceiving
- learning
- observing
- none of these
Answer : Option ( b ) -
Which action sequences are required to accomplish the agent’s goal?
- Search
- Plan
- Retrieve
- Both Search & Plan
Answer : Option ( d ) -
DFS agents will work in which state space
- irreversible state spaces
- reversible state spaces
- searchable state spaces
- all of these
Answer : Option ( b ) -
A production system consists of
- A set of Rule
- A sequence of steps
- Directly getting solution
- both a and b
Answer : Option ( d ) -
Which is the most straightforward method for designing an algorithm?
- Best-first search
- State-space search
- Depth-first search
- Hill-climbing search
Answer : Option ( b ) -
Control strategy is a strategy by which we come to know which rule is to be applied next during the process of reaching for a solution to a problem and should always cause motion
- True
- False
Answer : Option ( a ) -
The application of rule never prevents the later application of another rule that could also have been applied at the time that the first rule was selected, defined as
- Monotonic Production System
- Nonmonotonic production system
- commutative production system
- None
Answer : Option ( a ) -
Heuristic function of Best First Search is
- f(n) != h(n)
- f(n) < h(n)
- f(n) = h(n)
- f(n) > h(n)
Answer : Option ( c ) -
how can the performance of an agent improved if using heuristic search
- based on quality of heuristic function
- by improving quality of the nodes
- both a and b
- none
Answer : Option ( a ) -
If an intelligent agent using Breadth First Search then what is the time complexity in reaching the desired goal state?
- O(b^d)
- O(b-d)
- O(b)
- None of these
Answer : Option ( b ) -
depth-first search is that it can get stuck going down the wrong path and should be avoided for search trees with large or infinite maximum depths
- True
- False
Answer : Option ( a ) -
In complete, local search algorithm goal finds if one exists, an optimal algorithm always finds a global minimum/maximum
- True
- False
Answer : Option ( a ) -
If we are using Hill Climbing algorithm then when this algorithm will terminate?
- Stopping criterion met
- Global Min/Max is achieved
- No neighbor has higher value
- All of the mentioned
Answer : Option ( c ) -
What are the main limitation of hill-climbing search?
- Terminates at local maximum & does not find optimum solution
- Terminates at global maximum & does not find optimum solution
- Does not find optimum solution & fail to find a solution
- Fail to find a solution
Answer : Option ( a ) -
What is the role of heuristic function?
- A function to solve mathematical problems
- A function which takes parameters of type string and returns an integer value
- A function whose return type is nothing
- A function that maps from problem state descriptions to measures of desirability
Answer : Option ( d ) -
Which of the Following problems can be solved using Constraints Satisfaction Problems?
- 8-Puzzle problem
- 8-Queen problem
- Map coloring problem
- All of the mentioned
Answer : Option ( d ) -
If we have to prepare a schedule for a class of student. What type of problem is this?
- Search Problem
- Backtrack Problem
- Constraint Satisfaction Problem
- Planning Problem
Answer : Option ( c ) -
Make a big jump or randomly select a state far away from the current state. This is a possible solution to overcome issue in
- A* Algorithm
- Best First Search
- Hill Climbing
- Generate and test
Answer : Option ( c ) -
What is the heuristic function of A* algorithm
- f(n) = g(n) != h(n)
- f(n) = g(n) < h(n)
- f(n) = g(n) + h(n)
- f(n) = h(n)
Answer : Option ( c ) -
Using A* algorithm find the path with least cost (from a to z).
- abez
- abecfz
- adfz
- acez
Answer : Option ( a ) -
Using Best First Search algorithm find the path with least cost (from a to z)
- abez
- acfz
- adfz
- acez
Answer : Option ( a ) -
Which algorithm can be used in traversing graph and finding path?
- A*
- C*
- D*
- E*
Answer : Option ( a ) -
if the next state of environment is completely determined by the current state and the actions selected by agents , then this type of agent environment is termed as
- accessible
- deterministic
- episodic
- static
Answer : Option ( b ) -
Additional information or clue restricts the expansion of only promising nodes in search tree and guides the search in a specific direction towards the goal
- True
- False
Answer : Option ( a ) -
A Heuristic function maps the desirability of a problem state from descriptive to quantitative numbers
- yes
- no
Answer : Option ( a ) -
Compute heuristic function (h(n)) of the given 8 puzzle problem
- 12
- 10
- 11
- 13
Answer : Option ( b ) -
Which two heuristic approaches were used In DENDRAL AI?
- hill climbing and Constraint satisfaction technique
- A* and generate-test
- plan-generate-test and Constraint satisfaction technique
- none of these
Answer : Option ( c ) -
Which heuristic technique is also termed as OR-graph?
- A* algorithm
- Hill climbing
- both a and b
- Best-First Search
Answer : Option ( d ) -
Hill climbing is a variant of which heuristic approach
- Best First Search
- Generate-test
- Depth First Search
- both b and c
Answer : Option ( b ) -
How local maximum problem in Hill climbing can be overcome
- Randomly select a state
- move in several directions at once
- Utilise the backtracking technique
- None of these
Answer : Option ( c ) -
The heuristic approach which computes distance of current node from start state and distance of current node to goal state
- Best First Search
- A*
- Hill Climbing
- All of these
Answer : Option ( b ) -
An heuristic algorithm is admissible heuristic if its heuristic function never____
- underestimates the cost to reach the goal
- overestimate the cost to reach the goal
- both a and b
- None of these
Answer : Option ( b ) -
Which data structure is used in A* algorithm
- stack
- queue
- priority queue
- both b and c
Answer : Option ( c ) -
If a blind search technique i.e depth first search used to solve an AI problem. Then which data structure is used
- LIFO
- FIFO
- Hash Table
- none of these
Answer : Option ( a ) -
Artificial Intelligence (AI) is a way to make machines think and behave intelligently. Then these machines are controlled by
- Hardware
- Software
- both a and b
- none of these
Answer : Option ( b ) -
Which is the first artificial intelligent chatbot
- Siri
- Tay
- Alexa
- Eliza
Answer : Option ( d ) -
During 1970 to 1980, funding was reduced in the development of AI, then this period is stated as__
- cold period
- AI cold
- AI winter
- none of these
Answer : Option ( c ) -
Assume that in water jug problem, at a certain state, we required an operation i.e, “empty 3 liter jug by pouring all its water into 4 liter jug”. Then which condition is applied at this state
- (x+y,0)
- (x-x1,y)
- (x,3)
- (x,0)
Answer : Option ( a )
Artificial Intelligence MCQs
January 16, 2022
0