Give a recursive definition of the sum of the first n integers, S(n).
What will be an ideal response?
```
S(0) = 0
S(n) = n + S(n – 1) for n > 0
```
Computer Science & Information Technology
You might also like to view...
The target destination for data that has been cut or copied using the Clipboard is called the paste area
Indicate whether the statement is true or false
Computer Science & Information Technology
Groups are collections of related folders located in the Navigation pane
Indicate whether the statement is true or false
Computer Science & Information Technology