Easy
Given this code :
public static void main(String[] args){
int a = 2;
a += 2;
System.out.println(a%2);
}
What will be displayed in the console?
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!
Given this code :
public static void main(String[] args){
int a = 2;
a += 2;
System.out.println(a%2);
}
What will be displayed in the console?