wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Intelligent Agent

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

A home assistant robot works in the kitchen to fetch items. Sometimes it finds the fridge door closed and sometimes open. Which best describes the environment?

a)

Static and deterministic

b)

Dynamic and partially observable

c)

Episodic and fully observable

d)

Continuous but single-agent

2.

An ATM machine agent always gives the same output for the same card PIN input. Which environment property is correct?

a)

Stochastic and multi-agent

b)

Deterministic and fully observable

c)

Episodic and dynamic

d)

Continuous and partially observable

3.

In an airport baggage scanner, the AI must detect objects regardless of size, angle, or orientation. Which type of rationality challenge does this involve?

a)

Handling continuous percepts

b)

Ignoring performance measure

c)

Simple reflex action

d)

Episodic environment

4.

A web search engine crawler scans billions of pages continuously. Which environment property best matches this?

a)

Static and episodic

b)

Dynamic and continuous

c)

Deterministic and discrete

d)

Fully observable and static

5.

A chess-playing AI competing against another AI agent is an example of:

a)

Single-agent, deterministic environment

b)

Multi-agent, competitive environment

c)

Episodic, continuous environment

d)

Stochastic, static environment

6.

A voice recognition system must work with noisy input. This means the environment is:

a)

Fully observable

b)

Partially observable

c)

Static and deterministic

d)

Discrete and episodic

7.

A robot vacuum cleaner working around moving pets faces which environment?

a)

Static, single-agent

b)

Dynamic, stochastic

c)

Deterministic, discrete

d)

Episodic, fully observable

8.

A self-driving taxi avoids a shortcut road because it is under construction. Which factor of rationality influences this decision?

a)

Percept sequence

b)

Performance measure

c)

Limited action set

d)

Ignoring future consequences

9.

A health monitoring AI advises patients differently based on age and medical history. This shows rationality depends on:

a)

Random decision making

b)

Available percepts and model of environment

c)

Fixed reflex rules

d)

Ignoring environment changes

10.

A delivery drone takes a longer route to save battery by avoiding hills. This is rational because:

a)

It reduces path length only

b)

It considers overall performance measure

c)

It ignores percepts

d)

It always repeats actions

11.

Which situation best describes bounded rationality?

a)

A chess AI explores all moves before deciding

b)

A delivery bot uses limited time and memory to pick a near-best route

c)

A weather AI predicts perfectly for the next year

d)

A reflex agent making random choices

12.

A goal-based AI fails to reach its target due to missing percepts. To be more rational, it should:

a)

Add learning elements or model updates

b)

Reduce its goal space

c)

Ignore percept history

d)

Remove utility measures

13.

Which agent type would best suit a fire-fighting robot that must learn new escape routes over time?

a)

Simple reflex agent

b)

Model-based agent

c)

Learning agent

d)

Utility-based agent

14.

A goal-based delivery bot fails when a new road closure is introduced. What is missing in its structure?

a)

Performance measure

b)

Learning element

c)

Actuator

d)

Reflex rules

15.

Which agent type explicitly compares different possible outcomes before acting?

a)

Reflex agent

b)

Goal-based agent

c)

Utility-based agent

d)

Model-based agent

16.

A stock trading bot deciding how much to invest vs. save is an example of:

a)

Reflex agent

b)

Goal-based agent

c)

Utility-based agent

d)

Episodic agent

17.

In a learning agent, which element provides feedback about performance?

a)

Critic

b)

Performance element

c)

Problem generator

d)

Actuator

18.

A navigation AI plans routes using a map and traffic updates. This is an example of:

a)

Problem-solving agent

b)

Reflex agent

c)

Utility-based agent

d)

Episodic agent

19.

In problem-solving, the initial state is:

a)

The agent’s goal test

b)

The starting point before any action

c)

The set of possible actions

d)

The performance measure

20.

In a maze-solving problem, the goal test checks:

a)

If the agent has reached the exit

b)

If the path is shortest

c)

If percepts are complete

d)

If the performance measure is correct

21.

Which statement about problem-solving agents is true?

a)

They always act without considering the future

b)

They construct sequences of actions to reach goals

c)

They ignore percepts completely

d)

They don’t use search

22.

A robot arm arranging blocks to match a target pattern is using:

a)

Percept sequence

b)

Search through state space

c)

Model-based reflex rules

d)

Episodic decision making

23.

A maze-solving robot tries all possible paths level by level. Which strategy does this describe?

a)

Depth First Search

b)

Breadth First Search

c)

Uniform Cost Search

d)

Iterative Deepening

24.

Which search strategy might go deep into one path and fail to return in time?

a)

BFS

b)

DFS

c)

UCS

d)

IDS

25.

A delivery AI uses UCS to minimize distance traveled. What is the priority for node expansion?

a)

Depth of node

b)

Path cost so far

c)

Alphabetical order of states

d)

Random selection

26.

Iterative Deepening Search (IDS) is often used because:

a)

It requires less memory like DFS but remains complete like BFS

b)

It always guarantees the optimal path at zero cost

c)

It expands all nodes at once

d)

It ignores depth limits

27.

Why is BFS not practical for chess AI?

a)

Chess has a very large branching factor

b)

BFS ignores goal states

c)

BFS always falls into loops

d)

Chess is deterministic

28.

A robot vacuum cleaner using DFS in a big house may:

a)

Always clean optimally

b)

Use too much memory

c)

Get stuck in deep paths without solution

d)

Guarantee least-cost cleaning

29.

Which is a trade-off of IDS?

a)

Higher time use but lower memory use

b)

Lower time use but higher memory use

c)

No goal test required

d)

Ignores branching factor

30.

If a GPS AI uses UCS but roads have negative costs, what problem arises?

a)

UCS still finds shortest path

b)

UCS may enter infinite loop

c)

UCS behaves like BFS

d)

UCS guarantees zero-cost path