How many times is the following code invoked by the call recursive(4)?

```
void recursive( int i )
{
using namespace std;
if (i < 8)
{
cout << i << " ";
recursive(i);
}
}
```

a) 2
b) 4
c) 8
d) 32
e) This is an infinite recursion.

e) This is an infinite recursion.

Computer Science & Information Technology

You might also like to view...

Which of the following is NOT true in regard to the Design view of a form?

A) Design view shows the form design but not the data. B) Any aspect of the form design can be changed. C) This view is used for creation of the form. D) It is much easier to size and move controls in Design view.

Computer Science & Information Technology

Lookup functions are used to find values that are stored in ________

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology