1. Binomial Coefficient
The recurrence relation for C(n, k) is:
Correct Answer: a) C(n-1, k-1) + C(n-1, k)
Explanation:
This is Pascal's identity which forms the basis of the DP solution.
It states that any element in Pascal's triangle is the sum of the two
elements directly above it (one from the same column and one from the previous column).
2. Warshall's and Floyd's Algorithms
3. Optimal Binary Search Trees (OBST)
4. Knapsack Problem