Related Questions
Evaluate the expression when x is 4:
x += x++ * ++x % 2;
If the value of basic=1500, what will be the value of tax after the following statement is executed?
tax = basic > 1200 ? 200 :100;
Evaluate the following expression if the value of x=2, y=3 and z=1. v=x + --z + y++ + y
Evaluate the given expression when the value of a=2 and b=3
b*=a++ - ++b + ++a; System.out.println("a= "+a); System.out.println("b= "+b);