What does this program segment do?

```
s = 0; i = n; do
{
s += i;
i--;
} while (i != 0);
```
* a. Adds all the integers from n down to 1.
b. Adds all the integers from 1 to n-1.
c. Adds the even integers from 1 to n.
d. Adds the odd integers from 1 to n.
e. None of the above.


c. Adds the even integers from 1 to n.

Computer Science & Information Technology

You might also like to view...

Rollovers are grid structures that are divided into rows and columns.

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

Computer Science & Information Technology

Dr. Blahbah has implemented a system with an 8-bit random canary that is used to de tect and prevent stack-based buffer overflow attacks. Describe an effective attack against Dr. Blahbah's system and analyze its likelihood of success

What will be an ideal response?

Computer Science & Information Technology

The Toolbox window ____.

A. displays the names of projects and files included in a solution B. displays data connections and servers C. displays the tools you use when creating your application's interface D. displays the classes, methods, and properties included in a solution

Computer Science & Information Technology

A _________________ is a tool with application programming interfaces (APIs) that allow reconfiguring a cloud on the fly; it's accessed through the application's Web interface.?

A. ?configuration manager B. ?management plane C. ?backdoor D. ?programming language

Computer Science & Information Technology