Kizspy | Question: 11
(Choose 1 answer)
What is the output of the code snippet?
public class Test {
public static void main(String[] args) {
int x = -1;
String y = x+3;
System.out.format("%d %s",x,y);
}
}
A. Compile error
B. -1-13
C. -14
D. -12
FUOVERFL