Assume that x and y have been declared and initialized with int values. Consider the following Java expression.
(y > 10000) || (x > 1000 && x < 1500)
Which of the following is equivalent to the expression given above?
(y > 10000) && (x > 1000 || x < 1500)
(y > 10000 || x > 1000) || (y > 10000 || x < 1500)
(y > 10000 || x > 1000) && (y > 10000 || x < 1500)
(y > 10000 && x > 1000) && (y > 10000 && x < 1500)
(y > 10000 && x > 1000) || (y > 10000 && x < 1500)