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 287 students.
Show answer & explanation
Correct answer: A
Operator precedence → NOT > AND > OR NOT True = False False AND True = False False OR False = False