Oracle Database SQL — Question 268

Which two are true about the precedence of operators and conditions? (Choose two.)

Answer options

Correct answer: C, E

Explanation

The correct answers are C and E because the NOT operator indeed has a higher precedence than both AND and OR, which affects the order of evaluation in conditions. Additionally, operators are evaluated before conditions, which is a fundamental rule in programming logic. The other options are incorrect as they misrepresent the order of precedence among the operators.