Q2:::a=2; b=3;
a=a*b; // 6
b=a/b; // 2
a=a/b; // 3
now a=3 and b=2

????is it true,,,i have errors in it