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
You might also like to view...
Identify the incorrect logical operator:
a) AndAlso b) ElseOr c) Xor d) Not
________ is one of the popular standards used for citing materials
A) HTML B) XML C) FTP D) APA
In a(n) ____ loop the condition the tested condition does not depend on a count being achieved, but rather on a specific value being encountered.
A. pretest B. posttest C. fixed-count D. condition-controlled
The Kerberos protocol operates with a 6 step process. Steps 3 and 4 involve communication with a ticket granting server.
a. true b. false