📚 Question Bank Q28 — Algorithms
Tags
Algorithms
Q28. Marks: +2.0 UGC NET Paper 2: Computer Sc 23rd August 2024 Shift 1

Arrange the following steps in the correct order to solve the Knapsack problem using Dynamic Programming.

(A) Define the base case when the capacity is zero (0) or no items are left to consider

(B) Compute the maximum value that can be obtained using items up to the i-th item and a knapsack capacity of 0

(C) Identify subproblems and their dependencies based on items weights and values

(D) Initialize a table to store results of subproblems

(E) Iterate through each item and each possible Capacity to fill the table

Choose the correct answer from the options given below:

1.(C), (D), (A), (E), (B) 
2.(D), (C), (A), (E), (B)
3.(A), (C), (D), (E), (B)  ✓ Correct
4.(D), (A), (C), (E), (B)
📄 All “Algorithms” questions across papers
🏷 Change Tag for this Question