Assuming that x and y are equal to 3 and 2, respectively, after the statement x -= y executes, the values of x and y will be:

a. x: 5; y: 3
b. x: 3; y: -1
c. x: 3; y: 5
d. x: 1; y: 2

d. x: 1; y: 2

Computer Science & Information Technology

You might also like to view...

Public cloud

What will be an ideal response?

Computer Science & Information Technology

int[][] myVals = {{2, 4, 6, 8},                   {20, 40, 60, 80} }; ? Using the above two-dimensional array, what is the value of myVals[1][2]?

A. 4 B. 60 C. 6 D. 40

Computer Science & Information Technology