What is the output of the following code snippet?
3: int x = 4; 4: long y = x * 4 - x++ + --x; 5: if(y<10) System.out.println("A"); 6: else System.out.println("B"); 7: else System.out.println("C");
E.
The code does not compile since there are two else statements without additional if-then statements.