Do the following two statements in (I) and (II) result in the same value in sum?

```
(I):
for (int i = 0; i < 10; ++i) {
sum += i;
}
(II):
for (int i = 0; i < 10; i++) {
sum += i;
}
```
a. Yes
b. No


a. Yes
In this case, ++i and i++ are used standalone with no side-effect. So, (I) and (II) are equivalent. The correct answer is A.

Computer Science & Information Technology

You might also like to view...

A sparkline is a type of conditional formatting

Indicate whether the statement is true or false

Computer Science & Information Technology

A subdatasheet is used to modify field properties.

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

Computer Science & Information Technology

The Paste Special command lets you copy and paste:

a. Cell comments b. The resulting values of a formula instead of the actual formula c. Formatting options d. Multiply the selection by a copied value

Computer Science & Information Technology

In the structure of a msf_flash.html document, the ____________ list nests within the navigation element. ?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology