set-2
51. If the next state of the environment is completely determined by the current state and the actions of the agent, then the environment is ______.
Deterministic
Non-Deterministic
Random
Static
52. Tic-Tac-Toe game is the example of ______ environment.
Random
Dynamic
Deterministic
Non-Deterministic
53. Self-driving vehicles are an example of ______ AI processes.
Non-deterministic/Stochastic
Deterministic
Fully observable
Partially observable
54. In Episodic Environment, Experience is divided into ______ of agents perceiving then acting. Action taken in one ______ does not affect next one at all.
Epochs
Episodes
Time frames
Half
55. E-mail sorting system is an example of ______.
Episodic Environment
Static Environment
Non-Deterministic Environment
None of above
56. Chess Game is an example of ______.
Episodic Environment
Static Environment
Non-Episodic Environment
None of above
57. The environment is ______ if current decisions affect future decisions, or rely on previous ones.
Sequential/Non-Episodic
Static
Dynamic
None of above
58. If the environment does not change while an agent is acting, then it is ______; otherwise, it is ______.
Static, Dynamic
Static, Deterministic
Dynamic, Static
Dynamic, Deterministic
59. Consider an example, if we add 2+2=4 this will remain same they will never be change. Which environment is this?
Static
Dynamic
Sequential
Deterministic
60. Consider an example of playing football game, in every action there will be new reaction. Which environment is this?
Static
Dynamic
Sequential
Deterministic
61. If there are a limited number of distinct, clearly defined, states of the environment, the environment is ______.
Discrete
Continuous
Static
Dynamic
62. Consider an example of a game of chess or checkers where there are a set number of moves. Which environment is this?
Discrete
Continuous
Static
Dynamic
63. Signals constantly coming into sensors, actions continually changing is ______ environment.
Discrete
Continuous
Static
Deterministic
64. Consider an example, Taxi driving. In which there could be a route from to anywhere to anywhere else. Which environment is this?
Discrete
Continuous
Static
Deterministic
65. ______ is not Properties of Environment.
Discrete / Continuous
Static / Dynamic
Deterministic / Non-deterministic
No agent / Multiple agents
66. What kind of environment is crossword puzzle?
Dynamic
Static
Semi Dynamic
Observable
67. ______ environment is called as semi dynamic.
Environment does not change with the passage of time
Agent performance changes
Environment does not change with the passage of time, but Agent performance changes
Environment will be changed
68. An agent's sensors give it access to the complete state of the environment at each point in time is ______.
Fully observable environment
Partially observable environment
Stochastic Environment
Dynamic Environment
69. Environment can change while agent is thinking is ______.
Static Environment
Dynamic Environment
Deterministic Environment
Sequential Environment
70. Environment does not change with time but, but performance score does is ______.
Dynamic Environment
Semi-Dynamic Environment
Deterministic Environment
Sequential Environment
71. An agent operating by itself in an environment is ______.
Single Agent
Multi-Agent
Intelligent Agent
Rational Agent
72. What kind of agent is a Web Crawler?
Table-driven agent
Utility-based agent
Learning agent
Intelligent goal-based agent
73. ______ is the main task of a problem-solving agent.
Solve the given problem and reach to goal
To find out which sequence of action will get it to the goal state
All of the mentioned
None of the mentioned
74. ______ is a process of generating solution from an observed data.
Problem generating
Problem Solving
Problem Identifying
None of above
75. Problem solving is characterized by ______.
A set of goals
Set of objects
Set of operations
All of the mentioned above
76. Problem space is an ______ space.
Virtual
Abstract
Search
None of above
77. The solution to the problem space is ______.
Combination of operations and objects that achieve the goals.
Combination of Abstract space and objects that achieve the goals.
Combination of Problem and solution that achieve the goals.
Combination of Operation and Abstract space that achieve the goals.
78. Search refers to the search for a ______ in a problem space.
Problem
Solution
Idea
Knowledge
79. To build a system to solve a particular problem, we need to ______.
Define the problem
Analyze the problem
Isolate and represent task knowledge necessary to solve the problem
Choose the best problem-solving technique and apply to the particular problem
All of above mentioned
80. A ______ is defined by its elements and their relations.
Solution
Problem
Reason
Idea
81. ______ is a representation of element at given moment.
State
Space
Search
Problem
82. ______ is needed for state change.
Successor function
Compressor function
Generalization function
Abstract function
83. A ______ is a set of all states, reachable from initial state.
Search space
State space
Problem space
None
84. The structure of state space is ______ and ______.
Root node and leaf nodes
Tree and Graph
Tree and Forest
Forest and Graph
85. ______ explores the state space.
State process
Search process
Problem process
Successor function
86. In ______ the search explores, all possible path between the initial state and the goal state.
Best case
Worst case
Average case
All case
87. In the state space, a ______ is a path from the initial state to the goal state or sometime just the goal state.
Problem
Solution
Search
Process
88. A problem consists of description of ______.
Current state
Action
Desired state
All of them
89. What is Initial state + Goal state in Search Terminology?
Problem Space
Problem Instance
Search Space Graph
Admissibility
90. Which of the following is the process of eliminating the detail from a given state representation?
Extraction
Exploration
Association
Abstraction
91. A ______ is Deterministic, fully observable, known, discrete in nature.
Search space problem
State space problem
Conformant Problem
Contingency Problem
92. A ______ is non-observable in nature.
Search space problem
State space problem
Conformant Problem
Contingency Problem
93. A ______ is non-deterministic and/or partially observable in nature.
Search space problem
State space problem
Conformant Problem
Contingency Problem
94. A ______ is unknown state space.
Exploration problem
State space problem
Conformant Problem
Contingency Problem
95. ______ are the components of well-defined problems.
Initial state and available actions given by the successor functions.
Goal test
Path cost
All of above
96. Search algorithm are commonly evaluated in terms of:
Completeness, Time Complexity, Space Complexity, Optimality
Preparedness, Time Complexity, Space Complexity, Admissibility
Completeness, Constant Complexity, Logarithmic Complexity, Optimality
Preparedness, Time Complexity, Quadratic Complexity, Admissibility
97. ______ and ______ complexity is measured in terms of:
b- max branching factor of the search tree d- depth of the least-cost solution m- maximum depth of the search tree
Time, Space Complexity
Constant, Logarithmic Complexity
Time, Quadratic Complexity
Space, Logarithmic Complexity
98. A ______ is a searching technique that has no additional information about the distance from the current state to the goal.
Informed Search
Uninformed Search
Random Search
Binary Search
99. A ______ is a searching technique that has additional information about the estimate distance from the current state to the goal.
Informed Search
Uninformed Search
Random Search
Binary Search
100. ______ search uses knowledge to find out the steps to the solutions
Informed Search
Uninformed Search
Random Search
Binary Search
10 expanded nodes are: S, A, D, E, G, C, E, B, C, G
10 expanded nodes are: S, S, B, E, D, C, A, B, C, G
10 expanded nodes are: S, S, D, G, A, S, B, C, E, G
10 expanded nodes are: S, S, A, B, C, S, A, D, E, G
Last updated