1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. In the dynamic programming implementatio...
Q.

In the dynamic programming implementation of the assembly line scheduling problem, how many lookup tables are required?

A. 0
B. 1
C. 2
D. 3
Answer» C. 2
Explanation: in the dynamic programming implementation of the assembly line scheduling problem, 2 lookup tables are required one for storing the minimum time and the other for storing the assembly line number.

Discussion