Which of the following is the correct boolean expression to test for:
int x is being a value between, including, 500 and 650, or int y not equal to 1000?
O ((x >= 500 && x <= 650)|| (y != 1000))
O ((x > 500 AND x < 650) OR !(y. equal(1000)))
O ((x > 500 && x < 650) || (y != 1000))
O ((x < 500 && x > 650) || !(y == 1000))