Question
Easy

Which type of best first search algorithm was used to predict the closeness of the end of path and its solution?

1
Greedy BFS
2
Divide and Conquer
3
Heuristic BFS
4
Combinatorial
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Cyber Security, Ethics & Emerging Trends
Topic: Emerging Trends
Correct Answer
Option A
Explanation

The correct option is (1): Greedy Best-First Search (Greedy BFS) is the specific type of informed search algorithm designed to prioritize nodes based purely on their estimated proximity to the goal. The evaluation function it employs, $f(n)$, is defined strictly as the heuristic function, $h(n)$, where $h(n)$ provides an estimate of the cost from the current node $n$ directly to the goal state (the solution). This "greedy" strategy expands the…Read More