Question 1
Suppose x=10 and y=10. What is x after evaluating the expression (y >= 10) || (x++ > 10)?
◦ 9
◦ 10
◦ 11
Question 2
Analyze the following code:
if (x < 100) && (x > 10)
System.out.println("x is between 10 and 100");
◦ The statement has compile errors because (x<100) & (x > 10) must be enclosed inside parentheses.
◦ The statement has compile errors because (x<100) & (x > 10) must be enclosed inside parentheses and the println(…) statement must be put inside a block.
◦ The statement compiles fine, but has a runtime error.
◦ The statement compiles fine.