Which keyword makes a variable's value unchangeable in Java?
- A
immutable
- Bcheck_circle
final
- C
const
- D
static
Explanation
<code>final int MAX = 10;</code> — assignment to MAX is now an error.
AP Computer Science A· difficulty 3/5
Which keyword makes a variable's value unchangeable in Java?
immutable
final
const
static
Explanation
<code>final int MAX = 10;</code> — assignment to MAX is now an error.
Want 10 more like this — adaptive to your weak spots?