Multiple Choice
What would be displayed as a result of executing the following code?
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
Q38: Which of the following is not a
Q39: What will be displayed as a result
Q40: Character literals are enclosed in _ and
Q41: Every Java application program must have<br>A) a
Q42: In Java, _ must be declared before
Q44: To compile a program named First you
Q45: Variables are classified according to their<br>A) names<br>B)
Q46: A value that is written into the
Q47: If the following Java statements are executed,
Q48: A variable's scope is the part of