OD
}
(Choose 1 answer)
Consider the following function:
int fun(int n)
{if (n < 0)
return(fun(-n));else if(n<4)
return(2);else
return(n*fun(n/2));
What values of n are directly handled by the stopping (base) case?
A. n < 0
B. n < 4
C. n >= 4
D. n >= 0 && n<4