A good answer might be:When
is executed
nothing new is created.
A pattern representing 32912 is stored in the bits of value.
| |||||||||||||||
Two Types of Assignment StatementsNotice that there is a difference between the two statements:
and
In the first statement, value is a primitive type, so the assigment statement puts the data directly into it. In the second statement, str is an object reference variable (the only other possibility) so a reference to the object is put into that variable. There are only primitive variables and object reference variables, and each contains a specific kind of information:
How do you tell the two kinds of variables apart? Easy: look at how the variable is declared. Unless it was declared to be of a primitive type, it is an object reference variable. A variable will not change its declared type. | |||||||||||||||
QUESTION 8:How are the following variables declared? Click on the button of your choice.
|