Quiz 4
1. What is the evaluation result of the compound statement: NOT (False OR False)?
2. What algebraic property is shown by the equation A AND (B AND C) = (A AND B) AND C?
3. What algebraic property is shown by the equation A OR (B OR C) = (A OR B) OR C?
4. Which operator takes priority by default when evaluating an unparenthesized Boolean expression?
5. Between the AND and OR operators, which one typically holds higher precedence in standard evaluation orders?
6. What is the simplified value of the expression: A AND A?
7. What is the simplified value of the expression: A OR A?
8. What is the simplified value of the expression: A AND (NOT A)?
9. What is the simplified value of the expression: A OR (NOT A)?
10. How many input combinations are evaluated in a basic truth table for a two-variable Boolean expression?
Previous Next