Total Questions : 50
Expected Time : 50 Minutes

1. What type of problems is dynamic programming particularly effective in solving?

2. Which problem-solving approach is closely related to Dynamic Programming?

3. In dynamic programming, what is memoization?

4. What is an optimal substructure in the context of Dynamic Programming?

5. What is the purpose of the 'overlapping subproblems' property in Dynamic Programming?

6. What distinguishes a 'greedy algorithm' from a 'dynamic programming algorithm'?

7. What is the top-down approach in Dynamic Programming?

8. What is the primary limitation of using Dynamic Programming for problems with non-optimal substructure?

9. In dynamic programming, what is the purpose of the 'optimal solution function'?

10. Explain the concept of state transition in the context of Dynamic Programming.

11. What distinguishes a 'topological sorting algorithm' from a 'Dynamic Programming algorithm'?

12. What is the primary challenge in solving the subset sum problem using Dynamic Programming?

13. What is a key advantage of using dynamic programming in algorithmic problem-solving?

14. What is the Levenshtein distance, and how is it calculated using Dynamic Programming?

15. What is the primary challenge in solving problems with an 'exponential growth of subproblems' using Dynamic Programming?

16. What is the time complexity of the Fibonacci sequence using a naive recursive approach?

17. What is the knapsack problem in the context of Dynamic Programming?

18. What is the main idea behind Dynamic Programming?

19. In dynamic programming, what is the purpose of the 'bottom-up approach'?

20. What is the time complexity of a well-implemented dynamic programming solution?

21. What is a common approach for solving problems using dynamic programming?

22. What is the primary benefit of using Dynamic Programming for the traveling salesman problem?

23. In dynamic programming, what does the term 'optimal substructure' mean?

24. Which term describes storing the results of expensive function calls and returning the cached result when the same inputs occur again?

25. What distinguishes a 'stateful' Dynamic Programming algorithm from a 'stateless' one?

26. In Dynamic Programming, what is a subproblem?

27. What is the role of the 'state transition function' in dynamic programming?

28. What is the primary reason for using Dynamic Programming in optimization problems?

29. In dynamic programming, what is a 'bottom-up table' used for?

30. Which of the following is a common pitfall in Dynamic Programming?

31. In dynamic programming, what does the term 'optimal substructure' refer to?

32. In the context of Dynamic Programming, what is the purpose of the 'base case'?

33. Which is a common application of Dynamic Programming?

34. In the context of Dynamic Programming, what is the difference between top-down and bottom-up approaches?

35. Which type of Dynamic Programming approach is more memory-efficient?

36. Explain the concept of the 'optimal substructure' property in Dynamic Programming.

37. What is the Fibonacci sequence's time complexity using a dynamic programming approach?

38. What is the time complexity of the matrix chain multiplication problem using Dynamic Programming?

39. How does Dynamic Programming contribute to solving the edit distance problem?

40. In the context of Dynamic Programming, what does the term 'optimal substructure' refer to?

41. In the context of Dynamic Programming, what is the 'knapsack problem' and how is it solved?

42. What is the primary goal of dynamic programming?

43. In the context of dynamic programming, what does the term 'bottom-up approach' mean?

44. What type of problems is dynamic programming commonly used to solve?

45. How does dynamic programming contribute to solving optimization problems?

46. Which of the following is a disadvantage of the bottom-up approach in Dynamic Programming?

47. In dynamic programming, what does the term 'state' refer to?

48. What is the key difference between top-down and bottom-up dynamic programming approaches?

49. Which of the following scenarios is a classic example of a problem suited for Dynamic Programming?

50. What does the term 'tabulation' refer to in the context of Dynamic Programming?