What will be the values of x aand y after the following code is executed?

```
int x = 12, y = 5;
x += y--;
```
a. x = 12, y = 5
b. x = 16, y = 4
c. x = 17, y = 5
d. x = 17, y = 4


d. x = 17, y = 4

Computer Science & Information Technology

You might also like to view...

If a program requires a dynamically allocate two-dimensional array, you would allocate the memory by using

a. p1 = new int*[numRows]; for(int i=0; i < numRows; i++) p1[i] = new int[numColumns]; b. p1 = new int*[numRows][numColumns]; c. p1 = new[numRows][numColumns]int; d. none of the above

Computer Science & Information Technology

Footers identify the rows and columns in Excel

Indicate whether the statement is true or false

Computer Science & Information Technology

The best font size for reading is 10-12 points

Indicate whether the statement is true or false

Computer Science & Information Technology

To list all VBA objects along with the associated methods and properties for each object, open the Object ________

A) Properties window B) dialog box C) Picker D) Browser

Computer Science & Information Technology