class Test
{
public static void main(String args[])
{
int i=1;
for(int j=0;j<=2;j++)
{
i=i++;
}
System.out.println(i);
}
}
Why in this question the value of i is printing 1.