recategorized by
742 views
1 votes
1 votes

Assembly line scheduling and Longest Common Subsequence problems are an example of _______.

  1. Dynamic Programming
  2. Greedy Algorithms
  3. Greedy Algorithms and Dynamic Programming respectively
  4. Dynamic Programming and Branch and Bound respectively
recategorized by

1 Answer

0 votes
0 votes

$\text {option A, both the technique uses dynamic programming concepts.}$

  1. Longest Common Subsequence
  2. Assembly Line Scheduling

 

edited by
Answer:

Related questions

1 votes
1 votes
1 answer
1
gatecse asked Dec 9, 2020
668 views
Which of the following is a correct time complexity to solve the $0/1$ knapsack problem where $n$ and $w$ represents the number of items and capacity of knapsack respecti...
1 votes
1 votes
3 answers
2
gatecse asked Dec 9, 2020
666 views
In case of the dynamic programming approach the value of an optimal solution is computed in :Top down fashionBottom up fashionLeft to Right fashionRight to Left fashion
1 votes
1 votes
1 answer
4
gatecse asked Dec 9, 2020
406 views
Finding the location of the element with a given value is :TraversalSearchSortNone of the options