tonya_garcia
tonya_garcia 1d ago • 0 views

Multiple Choice Questions on Boolean Logic with Solutions for High School CS

Hey there! 👋 Getting ready for your Computer Science exam? Boolean Logic can be tricky, but I've got your back! This guide will quickly refresh your memory and then challenge you with some practice questions. Let's ace this! 💯
💻 Computer Science & Technology

1 Answers

✅ Best Answer
User Avatar
lee.michele53 Dec 29, 2025

📚 Quick Study Guide

  • 🔑 Boolean logic deals with `TRUE` and `FALSE` values.
  • ➕ The basic operators are `AND`, `OR`, and `NOT`.
  • 🤖 `AND` returns `TRUE` only if both operands are `TRUE`.
  • ✨ `OR` returns `TRUE` if at least one operand is `TRUE`.
  • 🚫 `NOT` reverses the value; `NOT TRUE` is `FALSE`, and `NOT FALSE` is `TRUE`.
  • 🧮 Truth tables summarize the results of boolean operations.
  • ✏️ Boolean expressions can be simplified using identities like the distributive law.

🧪 Practice Quiz

  1. What is the result of the expression TRUE AND FALSE?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  2. What is the result of the expression TRUE OR FALSE?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  3. What is the result of the expression NOT TRUE?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  4. What is the result of the expression NOT FALSE?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  5. What is the result of the expression (TRUE AND TRUE) OR FALSE?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  6. What is the result of the expression TRUE AND (FALSE OR TRUE)?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
  7. What is the result of the expression NOT (TRUE AND FALSE)?

    1. TRUE
    2. FALSE
    3. Maybe
    4. Error
Click to see Answers
  1. B
  2. A
  3. B
  4. A
  5. A
  6. A
  7. A

Join the discussion

Please log in to post your answer.

Log In

Earn 2 Points for answering. If your answer is selected as the best, you'll get +20 Points! 🚀