Question:

Which of the following problems is an example of backtracking strategy?

Show Hint

Backtracking algorithms explore all possible solutions by trying different combinations and backtracking when necessary.
Updated On: May 3, 2025
  • Knight's tour
  • Towers's Honoi
  • Travelling salesman’s
  • Matrix multiplication
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Backtracking is a problem-solving approach where a solution is built incrementally, and if at any point the solution cannot be extended, the algorithm backtracks and tries other possibilities. The Knight's tour problem is a classic example of backtracking.
Thus, the correct answer is \( \text{Knight's tour} \).
Was this answer helpful?
0
0