int x = 10; int y = 3; float result; result = x / y;
By inspection, what value do you expect result to have after the assignment? Add what you need to compile and run this code and to output the value of result after the assignment (use the compiler of your choice). Does result actually end up with the value you expected? Explain why result is assigned this value.
a. x + y * z b. x == 0 && y != 4 c. y < x < z d. y+-z e. !z||y f. y ? x : z g. x - y < z h. x = 0 || z <= y (Give value of expression and final value of x) i. z & 3 == 2