What is returned by function two defined below for the call two( 13 ) ?

```
int two ( int n )
{
int ans;
if ( n == 1 )
ans = 0;
else
ans = 1 + two (n / 2);
return ans;
}
```

a. 3
b. 7
c. 0
d. none of the above


a. 3

Computer Science & Information Technology

You might also like to view...

Create try and catch block that opens a file named statistics.txt for output.

Writes the integers 24, 55, and 76 to the file, and then closes the file.

Computer Science & Information Technology

Which of the following is NOT a benefit of allowing viewers to post comments on your blog?

A) They can customize your blog's look and feel. B) They can direct you to other interesting websites. C) They can direct you to other interesting blogs. D) You can find out what your readers think.

Computer Science & Information Technology

A timing diagram is a type of interaction diagram.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Describe the four components that make up a fiber-optic cable.

What will be an ideal response?

Computer Science & Information Technology