Total Questions : 30
Expected Time : 30 Minutes

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

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

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

4. Explain the role of the 'state' in a Dynamic Programming problem.

5. In Dynamic Programming, what is a subproblem?

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

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

8. Which dynamic programming concept involves solving a problem by solving its subproblems only once and storing the solutions?

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

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

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

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

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

14. What is the bottom-up approach in Dynamic Programming?

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

16. Which is a common application of Dynamic Programming?

17. In dynamic programming, what is memoization?

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

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

20. What is the purpose of the 'state transition diagram' in dynamic programming?

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

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

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

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

25. What is the primary reason for using Dynamic Programming in algorithm design?

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

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

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

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

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