The questions are as follows:
Class test{
public static void main(
String arg[])
{
int x=0,y=0;
for(int z=0;z<5;z++)
{
if((++x>2)||(++y>2))
{
x++;
}
}
System.out.println(x + " " +y);
}
}
I traced it as follows
z=0- x=1,y=1;
z=1 x=2,y=2;
z=3 x=3 ,y=2 (Here x is >2 so x++ executed and now x is 4);
z=4 x=5 y=2(Here also x+ executed and x is 6 now)
So o/p should be x=6and y=2 but why it is mentioned in answers as
x=8 and y=2?
One more is
Class test{
public static void main(String arg[])
{
int x=0,y=0;
for(int z=0;z<5;z++)
{
if((++x>2)&&(++y>2))
{
x++;
}
}
System.out.println(x + " " +y);
}
}
I traced it as follows
z=0 x=1 y=0
z=1 x=2 y=0
z=2 x=3 y=1(the && condition is true so x++ evaluated and x is now 4)
z=3 x=5 y=2(here x++ excecuted and x is 6 now)
z=4 x=7 y=3
so o/p should be x=7 and y=3 right?
but it is mentioned as x=6 and y=3
where I go wrong?