From the program below or here, why does the last call to System.out.println(i) print the value 7?
System.out.println(i)
7
class PrePostDemo { public
It prints 7 for the last statement, cos in the statement above, it's value is 6 and it's incremented to 7 when the last statement gets printed