Binary, denary and hexadecimal Flashcards
(26 cards)
What is Boolean logic?
A form of algebra in which all values are reduced to either true or false.
True or False: In Boolean logic, the value of a variable can be both true and false at the same time.
False
Fill in the blank: The basic operations of Boolean logic are AND, OR, and ____.
NOT
What does the AND operator do in Boolean logic?
It returns true only if both operands are true.
True or False: The NOT operator inverts the value of its operand.
True
What is the outcome of the expression TRUE AND FALSE?
FALSE
What is the outcome of the expression TRUE OR FALSE?
TRUE
What is the result of NOT TRUE?
FALSE
True or False: In Boolean logic, the expression A AND NOT A is always TRUE.
False
What is a truth table?
A table that shows all possible truth values for a set of Boolean variables.
Fill in the blank: In Boolean algebra, the expression A OR A is equivalent to ____.
A
What is the result of the expression (A OR B) AND (A OR NOT B)?
A
True or False: The expression A AND B is associative.
True
What is De Morgan’s Theorem?
It states that NOT (A AND B) is equivalent to (NOT A) OR (NOT B) and NOT (A OR B) is equivalent to (NOT A) AND (NOT B).
What does the XOR operator do?
It returns true if one operand is true and the other is false.
Which of the following is a property of Boolean addition? A) Commutative B) Non-commutative
A) Commutative
Fill in the blank: In Boolean logic, TRUE is represented by ____ and FALSE is represented by ____.
1; 0
What is the result of the expression A AND (B OR C)?
A AND B OR A AND C (distributive law)
True or False: In Boolean logic, A OR NOT A always equals TRUE.
True
What is a minterm?
A product term in a Boolean expression that corresponds to a single row in a truth table where the output is true.
What does the term ‘canonical form’ refer to in Boolean expressions?
A standardized way of expressing a Boolean function using minterms or maxterms.
True or False: The expression A AND (B AND C) is equivalent to (A AND B) AND C.
True
What is the result of the expression NOT (A OR B)?
NOT A AND NOT B (De Morgan’s Theorem)