Which of the following is equivalent to this code segment?

```
int total = 0;
for (int i = 0; i <= 20; i += 2) {
total += i;
}
```

a. int total = 0;
for (int i = 20; i < 0; i += 1) {
total += i;
}
b. int total = 0;
for (int i = 0; i <= 20; total += i, i += 2) {}
c. int total = 0;
for (int i = 0, i <= 20, total += i; i += 2) {}
d. int total = 0;
for (int i = 2; i < 20; total += i, i += 2) {}


b. int total = 0;
for (int i = 0; i <= 20; total += i, i += 2) {}

Computer Science & Information Technology

You might also like to view...

You can only use variable memory locations to control the data type of numbers used in calculations.

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

Computer Science & Information Technology

What visual indications in a browser window inform users that they’re viewing a page from a secure server? In terms of browser real estate, what percentage of the display changes? When writing a security statement for a Web site, why would you want to mention these indications explicitly?

What will be an ideal response?

Computer Science & Information Technology

Word provides a Shape Styles ____, allowing you to change the appearance of a shape.

A. toolkit B. gallery C. journal D. panel

Computer Science & Information Technology

The Sum function and Average function are examples of ________

A) total functions B) multivalued fields C) aggregate functions D) arithmetic operators

Computer Science & Information Technology