Last of boolean operators

What will be the output of the following sequence of boolean operators?

not True or False and not False or not (True and True) \text{not True or False and not False or not (True and True)}

False True

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Viki Zeta
Jun 5, 2016

not True or False and not False or not (True and True) \text{not True or False and not False or not (True and True)}

Since there is an and operator, even if any side of and statement is false, the total is false.

So, not True or False and not False or not (True and True) = False or False and not False or not (True and True) \text{not True or False and not False or not (True and True)} = \text{False or False and not False or not (True and True)}

So, first part of and operator is "False". So the answer is false.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...