Multiple Choice
What will be printed by the statements below?
Int x = 20;
Int y = x;
X += 3;
Y *= 2;
System.out.print ("x = " + x + ", y = " + y) ;
A) x = 23, y = 46
B) x = 23, y = 40
C) x = 46, y = 46
D) x = 3, y = 2
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q3: What will be printed by the statement
Q21: What is the value of Math.pow(3, 2)?<br>A)6.0<br>B)9.0<br>C)8.0<br>D)5.0
Q23: Which one of the following refers to
Q57: What is wrong with the following code
Q59: Which one of the following statements can
Q61: What is the output of the following
Q64: What is wrong with the following code
Q65: What is the output of the following
Q98: Which operator is used to concatenate two
Q103: Assume the following variables have been declared