Checkpoint 14.8.2.
- 1
- The variable a is not used in defining the variable b.
- 12.3
- The variable d is set to a copy of the value in variable b. The variable b still holds the value 12.3 as well.
- "b"
- The variable d gets assigned the same value as the one stored in b.
- "d"
- The variable d gets its value from the variable b.
What is the value of variable
d
when Listing 14.8.1 is finished running?