What will be the result of the following Boolean expression? NOT True OR False…
2023
What will be the result of the following Boolean expression? NOT True OR False AND True
- A.
False
- B.
True
- C.
Error in expression
- D.
No result
Attempted by 520 students.
Show answer & explanation
Correct answer: A
Solution: Evaluate using operator precedence: NOT first, then AND, then OR.
Step 1: NOT True → False.
Step 2: False AND True → False.
Step 3: False OR False → False.
Final result: The expression evaluates to False.