COMP 110 - Quiz 1 With Complete Solutions
What is the result of the following boolean expression?
not True
- True
- False - False
What is the result of the following boolean expression?
not not True
- True
- False - True
What is the result of the following boolean expression?
,not True and not True
- True
- False - False
What is the result of the following boolean expression?
not True or not False
- True
- False - True
What is the result of the following boolean expression?
not False or not False
, - True
- False - True
What is the result of the following boolean expression?
True and False or False and not False
- True
- False - False
Consider the following expression:
True and False or False and not False
Which operator evaluates first?
- and
- not
What is the result of the following boolean expression?
not True
- True
- False - False
What is the result of the following boolean expression?
not not True
- True
- False - True
What is the result of the following boolean expression?
,not True and not True
- True
- False - False
What is the result of the following boolean expression?
not True or not False
- True
- False - True
What is the result of the following boolean expression?
not False or not False
, - True
- False - True
What is the result of the following boolean expression?
True and False or False and not False
- True
- False - False
Consider the following expression:
True and False or False and not False
Which operator evaluates first?
- and
- not