0 / 60 seg.

What happens when you attempt to reassign a final variable?

public class FinalTest {
    public static void main(String[] args) {
        final int x = 100;
        x = 200; // Attempt to reassign
    }
}