| 9. |
You write my %opts = (%defaults, %user); and both hashes contain a key called timeout. Which value ends up in %opts?
Please select the correct answer:
|
| |
A.
|
The value from %defaults, because it appears first |
| |
B.
|
Both values, stored as a list under the one key |
| |
C.
|
Neither; the assignment fails with a duplicate key error |
| |
D.
|
The value from %user, because a later pair overwrites an earlier one for the same key |