If n were negative the result 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. a negative function
B. an infinite function
C. a compiler error
D. infinite recursion


6

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. The following lines of code are correct. If age >= 13 And < 20 Then txtOutput.Text = ";You are a teenager." End If 2. The Else part of an If block may be omitted if no action is associated with it. 3. Given that x = 7, y = 2, and z = 4, the following If block will display "TRUE". If (x >y) Or (y > z) Then txtBox.Text = "TRUE" End If 4. Given that x = 7, y = 2, and z = 4, the following If block will display "TRUE" If (x > y) And (y > z) Then txtBox.Text = "TRUE' End If 5. Every If block must have a Then and an Else.

Computer Science & Information Technology

Which of these is NOT a common platform for producing and delivering multimedia projects?

a. Macintosh OS X. b. Windows 98. c. Macintosh Classic and Windows XP. d. IBM VMS.

Computer Science & Information Technology

You should always use the operating system to force the full-duplex setting on a NIC.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Finder is a tool used in macOS to work with files and folders

Indicate whether the statement is true or false

Computer Science & Information Technology