The recursive 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 5-6
B. lines 3-4
C. line 1
D. lines 3-6
6
Computer Science & Information Technology
You might also like to view...
Which of the following tools has the ability to manipulate constraints?
A) Two-variable Data Table B) Scenario Manager C) Solver D) Goal Seek
Computer Science & Information Technology
In Project 2013, related tasks that further define summary tasks are called ________
A) subtasks B) summarized tasks C) team tasks D) indented tasks
Computer Science & Information Technology