Asked by Mpho
Is the following true or false? A * 3 >= B – 14 \ 3 AND F OR C <= D + 3 Where A = 5, B = 7, C = 12, D = -4, E = TRUE and F = FALSE
Answers
Answered by
Steve
First, let's add some parentheses to indicate order of operation:
((A * 3 >= B – 14 \ 3)AND(F)) OR (C <= D+3)
Now, anything AND FALSE is FALSE, so we are left with
FALSE OR (12 <= -4+3)
FALSE OR FALSE
FALSE
((A * 3 >= B – 14 \ 3)AND(F)) OR (C <= D+3)
Now, anything AND FALSE is FALSE, so we are left with
FALSE OR (12 <= -4+3)
FALSE OR FALSE
FALSE
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.