AI_search strategies

AI_search strategies

University

20 Qs

quiz-placeholder

Similar activities

Raheel Ahmed/Nick Ratakowski - Chapter 7 Part 2 Quiz

Raheel Ahmed/Nick Ratakowski - Chapter 7 Part 2 Quiz

11th Grade - University

20 Qs

Midterm 2 Quiz

Midterm 2 Quiz

University

16 Qs

Unit 7 (Part II) Cognition

Unit 7 (Part II) Cognition

11th Grade - University

22 Qs

Python Review Module 16 - Searching Sorting Algorithm

Python Review Module 16 - Searching Sorting Algorithm

University

17 Qs

Cognition - Reasoning, Problem solving, Creativity

Cognition - Reasoning, Problem solving, Creativity

University

20 Qs

Lecture SIX.

Lecture SIX.

University

20 Qs

Chapter 8 Thinking, Language, and Intelligence

Chapter 8 Thinking, Language, and Intelligence

11th Grade - University

21 Qs

Data Structure & Algorithm

Data Structure & Algorithm

University

15 Qs

AI_search strategies

AI_search strategies

Assessment

Quiz

Other

University

Hard

Created by

Adithya Anil

Used 3+ times

FREE Resource

20 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Media Image

Start from state A. Goal state is G. The number over each edge indicates the cost to transition from one state to another. What is the order of nodes visited by BFS (including the start and goal state too)? Break any ties using lexicographic ordering and do not perform duplicate detection.

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Consider f(n) = g(n) + 5h(n). What is the order of nodes visited by best-first search algorithm? (Start-node is S, no duplicate detection)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Start state is a, and goal state is z. Cost of transitioning from one node to another are mentioned over the corresponding edge. Numbers on the node are the heuristic values. Assume successors are returned in reverse lexicographic order. In case of ties, use lexicographic ordering for breaking ties.For A* search with full duplicate detection, what is the order in which the nodes are visited?

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is/are false regarding the A* search algorithm ?

It gives optimal solutions

A* search algorithm has a better worst-case space time complexity than DFS if the heuristic used is admissible

It is a systematic search algorithm

It helps improve the worst-case time complexity of the search

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Consider the given adversarial search tree. Assume that the search always chooses children from left to right. The search tree uses alpha-beta pruning.

Which of the following nodes are pruned during the search?

J

K

L

M

N

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is/are true regarding the basic mini-max adversarial search algorithm?

It is complete if the search tree is finite

It is optimal for all kinds of adversaries

The worst-case time complexity and space complexity is similar to that of Depth First Search

By itself, it cannot play games like Chess and Go due to huge search depths.

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following is/are false regarding the alpha-beta pruning for the mini-max search algorithm?

It can potentially lead to suboptimal solutions compared to mini-max search without any pruning

It is guaranteed to improve the running time in-comparison to the mini-max search without any pruning

The order in which nodes are visited affects the amount of pruning

If the successors of a node are chosen randomly, the time complexity (on average) is O(b3m/4)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?