The base case is shown on:

```
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. lines 3-4
B. lines 5-6
C. line 1
D. lines 3-6

6

Computer Science & Information Technology

You might also like to view...

________ is a feature that records changes and comments made to a document by others

Fill in the blank(s) with correct word

Computer Science & Information Technology

The standard Windows user interface is called the __________.

a. shell b. GUI c. desktop d. line command interface

Computer Science & Information Technology