Answer:
The three options are true
A. (x > 0 || x < 10) is same as ((x > 0) || (x < 10))
C. (x > 0 || x < 10 && y < 0) is same as (x > 0 || (x < 10 && y < 0))
D. (x > 0 && x < 10) is same as ((x > 0) && (x < 10))
Explanation:
The order of precedence is that && is performed first, || next.
Brackets can be used to separate single entity without losing the meaning