What is the value of x after the following code has been executed?

```
int x = 75;
int y = 90;
if (x != y)
x += y;
```

a. 75
b. 90
c. 15
d. 165

d. 165

Computer Science & Information Technology

You might also like to view...

Filtered is displayed in the ________ bar of a form letting the user know that there is an active filter

A) Search B) Find C) Filter D) Status

Computer Science & Information Technology

Which of the following is NOT true about applying filters to a datasheet?

A) A filter is a condition you apply permanently to a table or query. B) You can choose to save a table with the filter applied so when you open the table later the filter is still available. C) A filter is a simple technique to quickly reduce a large amount of data to a much smaller subset of data. D) All records that do not match the filter criteria are hidden until the filter is removed or the table is closed and reopened.

Computer Science & Information Technology