If we call function p with n = 7, then the next time p is called, n would be:

```
1 float p( float x, int n )
2 {
3 if ( n == 0 )
4 return 1;
5 else
6 return x p( x, n – 1 );
7 }
```
A. 1
B. 0
C. 8
D. 6

6

Computer Science & Information Technology

You might also like to view...

[C++11]: To help prevent errors, apply C++11’s ________ keyword to the prototype of every derived-class function that overrides a base-class virtual function.

a. virtual b. abstract c. overridable d. None of the above.

Computer Science & Information Technology

To make an accurate diagnosis for a more complicated medical problem, your doctor may use a(n) ____.?

A. ?heuristic system B. ?neutral network C. ?expert system D. ?conventional system

Computer Science & Information Technology