Answer:
FIRST, the multiplication 2*3 is performed to get the value 6.
Two Steps
First, the expression on the right is calculated:
Next, the result of that calculation is put into
the "litte box of memory" that is the variable value:
It will really, really help you to think carefully about these two steps. Sometimes even second year computer science majors get confused about this and write buggy code.
QUESTION 13:
What will this program fragment write?
value = 2*3; System.out.println( "value holds: " + value );