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

Computer Science & Information Technology

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

Computer Science & Information Technology

The Charm menu in Windows 8 has twelve options to choose from

Indicate whether the statement is true or false

Computer Science & Information Technology

__________ 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).

Computer Science & Information Technology

Batteries should be charged to at least how much when in storage?

A. ?80 percent B. ?20 percent C. ?100 percent D. ?10 percent

Computer Science & Information Technology