Exam 2
Original Session
Date: 08 Dec 2024
MCQ
- which of the following problem not solved using backtrack
- Sudoku, NQueen, Shortest path in graph, Cryptarithmetic puzzles
- Sudoku, NQueen, Shortest path in graph, Cryptarithmetic puzzles
- In recursive implementation of Fibonacci, what is the time complexity ?
- On, LogN, n^2, 2^n.
- On, LogN, n^2, 2^n.
- In backtracking what is the role of decision space.
- It represent the set of all feasible solutions to the problem.
- It specifies the initial state of search space.
- It determines the order in which solutions are explored.
- It defines the constraints that solutions must satisfy.
- What is a potential drawback of using recursion instead of iteration ?
- Recursion typically consumes less memory than iteration.
- Recursion often leads to better performance due to compiler optimizations.
- Recursion can be harder to understand and debug than iterative solutions.
- Recursion allows for more flexible control flow compared to iteration.
Program
- leetcode 390 link
- 390. Elimination Game
- leetcode 784 link
- 784. Letter Case Permutation
- leetcode 679 link
- 679. 24 Game