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?
A. ( y > 10000 || x > 1000 ) && ( y > 10000 || x < 1500 )
B. ( y > 10000 || x > 1000 ) || ( y > 10000 || x < 1500 )
C. ( y > 10000 ) && ( x > 1000 || x < 1500 )
D. ( y > 10000 && x > 1000 ) || ( y > 10000 && x < 1500 )
E. ( y > 10000 && x > 1000 ) && ( y > 10000 && x < 1500 )