☑Kizspy.me
(Choose 1 answer)
☐ A
Consider the following function:
int fun(int n)
{if (n< 0)
return(fun(-n));
else if(n<5)
return(2);
Back
Next
}
else
return(n*fun(n/2));
Which call will result in the most recursive calls?
A. fun(-1012);
B. fun(100);
FUO.sh
sh the exam.
C. fun(0);
D. fun(1012);