Objective Type Questions:
1.
Which one is the correct equation for Fibonacci sequence by Dynamic
Programming?
a.
F[n]=F[n-1]+F[n-2] b.
Fn=Fn-1+Fn-2 c. F(n)=F(n-1)+F(n-2) d.
All of these
2.
Which equation is correct when a character is matched in Longest Common
Subsequence problem?
a.
c[i,j]=c[i,j-1] b.
c[i,j]=c[i-1,j-1] c. c[i,j]=c[i-1,j] d. None of
these