Total Questions : 40
Expected Time : 40 Minutes

1. In Dynamic Programming, what is a subproblem?

2. What is a common application of dynamic programming in computer science?

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

4. What is the primary goal of dynamic programming?

5. What is the primary disadvantage of using dynamic programming?

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

7. What is the core principle behind dynamic programming?

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

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

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

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

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

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

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

15. What is the role of the 'transition equation' in dynamic programming?

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

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

18. What is the main idea behind Dynamic Programming?

19. How does Dynamic Programming differ from Greedy Algorithms?

20. Why is dynamic programming considered a powerful technique in algorithmic problem-solving?

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

22. What is the primary drawback of using the top-down approach in Dynamic Programming?

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

24. What is the key advantage of memoization in Dynamic Programming?

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

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

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

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

29. What is the primary advantage of using memoization in Dynamic Programming?

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

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

32. What is the Bellman-Ford algorithm, and how is it related to Dynamic Programming?

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

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

35. What does the term 'overlapping subproblems' mean in dynamic programming?

36. Which is a common application of Dynamic Programming?

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

38. In dynamic programming, what is memoization?

39. How does Dynamic Programming differ from Divide and Conquer?

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