What is the result of the following Java code using the final keyword?
final
final int CONSTANT = 5; CONSTANT = 10;
No change occurs, and no error is thrown
The value of CONSTANT remains 5
A compilation error occurs
The value of CONSTANT becomes 10