Suppose x is 5 and y is 7. Choose the value of the following expression: (x != 7) && (x <= y) a. false b. true c. 0 d. null Suppose that x is an int variable. Which of the following expressions always evaluates to true? a. (x > 0) || ( x <= 0) c. (x > 0) && ( x <= 0) b. (x >= 0) 11 (x == 0) d. (x > 0) && (x == 0)