wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AI Concepts Quiz

Total questions: 25

Worksheet time: 13mins

Name
Class
Date
1.

What does an AI agent perceive to make decisions?

a)

Actions

b)

Environment

c)

Sensors

d)

Goals

2.

A fully observable environment means the agent:

a)

Has limited information

b)

Can perceive the entire state of the environment at all times

c)

Acts randomly

d)

Has no knowledge of the environment

3.

Which of the following agents maintains an internal state to handle partially observable environments?

a)

Simple reflex agent

b)

Model-based reflex agent

c)

Goal-based agent

d)

Utility-based agent

4.

The concept of rationality in AI means the agent:

a)

Chooses actions randomly

b)

Chooses actions that maximize expected performance

c)

Always acts optimally regardless of environment

d)

Does not learn from experience

5.

Which of the following is NOT an uninformed search algorithm?

a)

Breadth-First Search

b)

Depth-First Search

c)

A* Search

d)

Uniform Cost Search

6.

In informed search strategies, the function used to estimate the cost from the current state to the goal is called:

a)

Path cost

b)

Heuristic function

c)

Utility function

d)

Performance measure

7.

Which search algorithm expands the shallowest unexpanded node first?

a)

Depth-First Search

b)

Breadth-First Search

c)

Uniform Cost Search

d)

Greedy Best-First Search

8.

What is the primary disadvantage of Depth-First Search (DFS)?

a)

Requires a lot of memory

b)

Can get stuck in infinite loops

c)

Always finds the shortest path

d)

Uses heuristics inefficiently

9.

The goal of a problem-solving agent is to:

a)

Explore the environment randomly

b)

Find a sequence of actions leading to the goal state

c)

Execute predefined actions without searching

d)

Learn new goals automatically

10.

Which of the following best describes a static environment?

a)

Environment changes over time

b)

Environment remains unchanged while agent is deciding

c)

Environment is unpredictable

d)

Agent cannot perceive environment

11.

In AI, the term 'performance measure' refers to:

a)

How fast the agent runs

b)

Criteria to evaluate agent's success

c)

The agent's programming language

d)

Memory usage of the agent

12.

Which agent type uses a utility function to choose among multiple goals?

a)

Simple reflex agent

b)

Model-based agent

c)

Utility-based agent

d)

Goal-based agent

13.

Which search strategy uses both path cost and heuristic value to find optimal solutions?

a)

Uniform Cost Search

b)

A* Search

c)

Greedy Best-First Search

d)

Depth-First Search

14.

What does it mean if an environment is deterministic?

a)

Next state depends only on current state and action

b)

Next state is random

c)

Environment changes unpredictably

d)

Agent cannot perceive the environment

15.

Which of the following is NOT true for uninformed search algorithms?

a)

They use no domain knowledge

b)

They expand nodes blindly

c)

They always find optimal solutions

d)

Examples include BFS and DFS

16.

The main advantage of informed search over uninformed search is:

a)

Less memory usage

b)

Ability to use heuristics to guide the search

c)

Simplicity in implementation

d)

Always guaranteed to find a solution

17.

Which agent type is best suited for environments where the agent has incomplete knowledge?

a)

Simple reflex agent

b)

Model-based agent

c)

Random agent

d)

Goal-based agent

18.

What does the 'state transition model' describe?

a)

How the agent moves physically

b)

How actions change the environment state

c)

Agent's internal memory

d)

Performance evaluation criteria

19.

Which of these search algorithms is complete (always finds a solution if one exists)?

a)

Depth-First Search

b)

Breadth-First Search

c)

Greedy Best-First Search

d)

Hill Climbing

20.

The search tree of a problem-solving agent represents:

a)

Possible sequences of actions

b)

All known environments

c)

Agent's programming code

d)

Sensors and actuators

21.

T/F: A simple reflex agent bases its actions solely on the current percept.

a)

True

b)

False

22.

T/F: The A* search algorithm combines path cost and heuristic to optimize search.

a)

True

b)

False

23.

T/F: In a stochastic environment, the outcome of actions is unpredictable.

a)

True

b)

False

24.

T/F: Breadth-First Search uses a stack data structure.

a)

True

b)

False

25.

T/F: Rational agents always perform the optimal action.

a)

True

b)

False