✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does this compute?------------------------------------
int f(int n){
if(n <= 1) return n;
return f(n-1) + f(n-2);
}