Multiple Choice
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
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q14: In a for loop, the control variable
Q15: In all but very rare cases, loops
Q16: The while loop is always the best
Q17: The _ loop is ideal in situations
Q18: How many times will the following do-while
Q20: In the following code, what values could
Q21: Which of the following statements opens a
Q22: The _ loop is ideal in situations
Q23: In a for loop, the control variable
Q24: The do-while loop must be terminated with