If n were negative, the driver can get the correct answer via function p by using the line of code:

```
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. return 1 / p( x, -n );
B. return 1 / p( x, n );
C. return p( x, -n );
D. return p( x, n );

6

Computer Science & Information Technology

You might also like to view...

Placeholders determine where objects, such as graphics, are first placed in a presentation

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following is TRUE of RAMBUS memory in Pentium 4 era PCs?.

A. All unused RAMBUS slots need to be filled with CRIMM dummy chips. B. RAMBUS chips can be mixed and matched for numerous sizes and speeds in a given system. C. RAMBUS memory provides more throughput and maximum speed than DDR3. D. RAMBUS slots are backwards compatible with DDR1 memory.

Computer Science & Information Technology