What would be the result after the following code is executed?
```
int[] x = {23, 55, 83, 19};
int[] y = {36, 78, 12, 24};
x = y;
y = x;
```
a. x[] = {36, 78, 12, 24} and y[] = {23, 55, 83, 19}
b. x[] = {36, 78, 12, 24} and y[] = {36, 78, 12, 24}
c. x[] = {23, 55, 83, 19} and y[] = {23, 55, 83, 19}
d. Nothing. This is a compile error.
b. x[] = {36, 78, 12, 24} and y[] = {36, 78, 12, 24}
You might also like to view...
Match the terms with their definition
1. Collapse 2. Expand 3. Demote 4. Promote A. To move a paragraph to a lower level in an outline B. To hide lower levels in an outline C. To move a paragraph to a higher level in an outline D. To show lower levels in an outline
Which of the following best describes a style manual?
A) A set of standards for designing documents B) A reference document providing rules for conducting research C) A description of various letter styles, including block and modified block D) A publication listing all Word styles, such as Heading and Body Text