#15Multiple Choice
Given the code fragment:
int a = 0;
a++;
System.out.printIn(a++);
System.out.printIn(a);
What is the result?
Given the code fragment:
int a = 0;
a++;
System.out.printIn(a++);
System.out.printIn(a);
What is the result?