Examlex

Solved

What Will Be Displayed After the Following Statements Have Been

question 20

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) ;


Definitions:

Related Questions