InterviewSolution
Saved Bookmarks
| 1. |
A recursive function h, is defined as follows :h(m) = k, if m = 0 = 1, if m = 1 = 2 h(m – 1) + 4h(m – 2), if m ≥ 2If the value of h(4) is 88 then the value of k is :(A) 0(B) 1(C) 2(D) -1 |
| Answer» None | |