What will be the value of x after the following code is executed?

```
int x = 10, y = 20;
while (y < 100)
{
x += y;
}
```

a. 90
b. 110
c. 210
d. this is an infinite loop


d. this is an infinite loop

Computer Science & Information Technology

You might also like to view...

Recursion often is preferable to iteration because ________.

a. it is faster. b. it requires less memory. c. it models the problem more logically. d. All of the above.

Computer Science & Information Technology

Setting an element's position to relative is done within which of the following?

a. ```

``` b. ``` ``` c. ``` ``` d. ``` ```

Computer Science & Information Technology

____________________ contains references or links to access other files or text.

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

Computer Science & Information Technology

When coding in VBA, comments are preceded by ________

A) an exclamation point B) a question mark C) an apostrophe D) a double quote

Computer Science & Information Technology