Question: In a dynamic programming solution for the Longest Common Subsequence (LCS), what does the DP table represent?
Options:
Correct Answer: The length of the LCS
Solution:
The DP table in LCS represents the length of the longest common subsequence between two strings.