Sail E0 Webinar
Question
Consider the following recursive implementation to find the nth fibonacci number:int fibo(int n){     if(n == 1)        return 0;     else if(n == 2)        return 1;     return ________;}int main(){     int n = 5;     int ans = fibo(n);     printf("%d",ans);     return 0;}Which of the following lines should be inserted to complete the above code?
Options:
A .  fibo(n "“ 1)
B .  fibo(n "“ 1) + fibo(n "“ 2)
C .  fibo(n) + fibo(n "“ 1)
D .  fibo(n "“ 2) + fibo(n "“ 1)
Answer: Option A


The line fibo(n “ 1) + fibo(n “ 2) should be inserted to complete the above code.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

More Questions on This Topic :


Latest Videos

Latest Test Papers