Which of the following Boolean expressions is not logically equivalent to the other three? A. not(-6<0 or-6>10) B. not(-6>10 or-6==10) C. not(-6<10 or-6==10) D. -6>=0 and -6<=10 Answer Workspace Report Discuss Answer with explanation Answer: Option B Explanation The expression not(-6<0 or -6>10) returns the output False. The expression -6>=0 and -6<=10 returns the output False. The expression not(-6<10 or -6==10) returns the output False. The expression not(-6>10 or -6==10) returns the output True. Workspace
Discuss about the question