

InterviewSolution
Saved Bookmarks
1. |
For non-negative integers m and n a function is defined as follows f(m,n) = {n+1 if m=0; f(m-1,1) if m!=0, n=0}` Then the value of f(1,1) isA. 1B. 2C. 3D. 4 |
Answer» Correct Answer - C `f(1,1)=f(0,f(1,0))=f(0,f(0,1))=f(0,2)=3` |
|