Refer to the following function for Question:
```
int six
(int n)
{
int ans;
if (n <= 1)
ans = 1;
else if (n % 2 == 0)
ans = n * six (n - 2);
else
ans = six (n - 1);
return ans;
}
```
What value is returned by function six for the call six (9); ?
a. 8
b. 48
c. 945
d. 384
e. 383
d. 384
You might also like to view...
If you want the data in a table to recalculate automatically when edited, you should use a ________ program
A) word processing B) desktop publishing C) presentation graphics D) spreadsheet
The Charm menu in Windows 8 has twelve options to choose from
Indicate whether the statement is true or false
__________ is a form of legal protection that grants the author of an original work exclusive rights that include distributing and performing that work.
Fill in the blank(s) with the appropriate word(s).
Batteries should be charged to at least how much when in storage?
A. ?80 percent B. ?20 percent C. ?100 percent D. ?10 percent