Multiple Choice
What will be displayed after the following statements have been executed?
Int x = 15, y = 20, z = 32;
X += 12;
Y /= 6;
Z -= 14;
System.out.println("x = " + x +
", y = " + y +
", z = " + z) ;
A) x = 27, y = 3.333, z = 18
B) x = 27, y = 2, z = 18
C) x = 37, y = -14, z = 4
D) x = 27, y = 3, z = 18
Correct Answer:

Verified
Correct Answer:
Verified
Q5: Programming style includes techniques for consistently putting
Q16: When saving a Java source file, save
Q19: What will be the displayed when the
Q22: What will be the value of z
Q23: Which of the following is not a
Q24: Both character literals and string literals can
Q25: Variables are classified according to their<br>A) names.<br>B)
Q27: A message dialog is a quick and
Q29: The primitive data types only allow a(n)
Q40: Character literals are enclosed in _ and