Question: In this code snippet, why does the compiler not allow the value of y to change?
- `y` must be declared with `var` to be mutable
- `y` is an implicitly immutable value
- `y` can change only in a while loop
- In order to change `y`, it must be declared outside of the loop
Answer: The correct answer of the above question is Option B:`y` is an implicitly immutable value