Test 1 and 2 (Ch. 1-3) Flashcards

1
Q

A rational agent must always make decisions that are optimal given its current knowledge, T/F?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A partially observable environment is one where the agent has the necessary information about the state of the environment, T/F?

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A table-driven agent is highly adaptable to new situations, T/F?

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In a semi-dynamic environment, the state of the environment can change while the agent is deliberating, T/F?

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

An autonomous agent relies entirely on pre-programmed rules without learning from its environment, T/F?

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an important property of a goal-based agent?

A

It plans actions based on future goals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What kind of environment is most suitable for a utility-based agent?

A

A dynamic and partially observable environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Do model-based reflex agents require current percepts to function?

A

Yes, but they also keep a percept history

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which of the following is required for a simple reflex agent to operate effectively?

A

Predefined condition-action rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What best describes the goal of “thinking like a human?”

A

Creating models that mimic human thought processes and decision-making

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A chess-playing AI that evaluates possible moves and selects the best one based on logic and probability is an example of:

A

Thinking rationally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

An AI system that drives a car by observing the environment and making decision to safely navigate traffic is an example of:

A

Acting rationally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

General Problem Solvers (GPS) are best categorized under the AI approach of:

A

Thinking humanly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which agent type would struggle in a non-deterministic environment?

A

Simple reflex agent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the primary objective of the Turing Test?

A

To assess a machine’s ability to exhibit intelligent behavior indistinguishable from a human

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What best describes a situation involving a known environment in AI?

A

An AI agent playing a board game with predefined rules and a fixed board layout

17
Q

What is the environmental description of playing soccer?

A

Partially observable, stochastic, sequential, semi-dynamic, continuous, multi-agent

18
Q

What is an essential component for passing the Total Turing Test that is not required for the standard Turing Test?

A

Vision and robotics

19
Q

A _____ environment requires the agent to account for uncertainty in its decision-making process

A

Stochastic

20
Q

An agent’s _____ is the abstract mathematical representation of its behavior, while the _____ is the concrete implementation

A

Function, program

21
Q

A(n) _____ agent learns from its environment and adapts its behavior over time

A

Learning

22
Q

Consider a finite, acyclic search space where DFS is guaranteed to eventually find a solution and the root is not a goal. In this situation, IDS will always explore more nodes than depth first, T/F?

A

False

23
Q

If h1(s) and h2(s) are two admissible A* heuristics, then their sum h(s) = h1(s) + h2(s) is also admissible, T/F?

A

False

24
Q

What’s an incomplete algorithm?

A

DFS, if the search tree is infinite

25
Q

What is the size of the search space in the 8-puzzle problem?

A

9!/2

26
Q
A