Hi All, Consider the code snippet.. --------------------------------------------------- int money=0; for(int i = 0;i<100;i++) { money = money++; } System.out.println("The value of money is "+money); --------------------------------------------------- Can someone tell me the value of money in the above code by ellaborating the loop execution..?