返回卡包市场

1.4.3 Boolean Algebra

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 24内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (24 张)

#1
正面 (问题)

What does the AND gate do and what is its symbol?

背面 (解答)

It outputs 1 if both input values are 1. The symbol is: ∧

#2
正面 (问题)

What does the OR gate do and what is its symbol?

背面 (解答)

It outputs 1 if at least 1 input’s value is 1. The symbol is: ∨

#3
正面 (问题)

What does the NOT gate do and what is its symbol?

背面 (解答)

It reverses the value of an input, from 0 to 1 or vice versa. The symbol is: ¬

#4
正面 (问题)

What does the XOR gate do and what is its symbol?

背面 (解答)

It outputs 1 only if one input is 1, but not if both inputs are 1. The symbol is: ⊻

#5
正面 (问题)

What is the purpose of a truth table?

背面 (解答)

It’s used to showcase all possible input combinations for a logic circuit or Boolean expression, alongside the resulting output for each combination.

#6
正面 (问题)

What is the purpose of a Karnaugh map?

背面 (解答)

It’s a visual method used to simplify Boolean expressions and make logic circuits more efficient.

#7
正面 (问题)

What is De Morgan’s Law for simplifying Boolean expressions?

背面 (解答)

It states that ¬(A AND B) = (¬A OR ¬B). And states that ¬(A OR B) = (¬A AND ¬B). This shows how to distribute negation across AND and OR operations.

#8
正面 (问题)

What is the Distributive Law for simplifying Boolean expressions?

背面 (解答)

It states that A AND (B OR C) = (A AND B) OR (A AND C). This allows expressions to be expanded or factored.

#9
正面 (问题)

What is the Associative Law for simplifying Boolean Expressions?

背面 (解答)

It states that (A AND B) AND C = A AND (B AND C). It also states that (A OR B) OR C = A OR (B OR C). This shows that the grouping of terms doesn’t affect the result.

#10
正面 (问题)

What is the Commutative Law for simplifying Boolean Expressions?

背面 (解答)

It states that A AND B = B AND A and A OR B = B OR A. This shows that the order of terms doesn’t matter.

#11
正面 (问题)

What is the Double Negation rule used for simplifying Boolean expressions?

背面 (解答)

It states that ¬¬A = A. This shows that 2 NOTS cancel each other out.

#12
正面 (问题)

What is the purpose of a logic gate diagram?

背面 (解答)

Logic gate diagrams are visual representations of Boolean expressions or digital circuits, showing how data flows through logic gates to produce an output.

#13
正面 (问题)

Do you know the AND Gate?

背面 (解答)

#14
正面 (问题)

Do you know the OR Gate?

背面 (解答)

#15
正面 (问题)

Do you know the NOT Gate?

背面 (解答)

#16
正面 (问题)

Do you know the XOR Gate?

背面 (解答)

#17
正面 (问题)

Describe the inputs and outputs used by a D-type flip-flop circuit, explaining how the inputs are used to control the outputs.

背面 (解答)

The inputs include Data input (often labelled D) and Clock input. It has 2 outputs: Q output and the inverse of Q (NOT Q). When the clock input goes high Q changes to D.

#18
正面 (问题)

What is the purpose of a D-type flip-flop circuit?

背面 (解答)

To delay or store a value of 1 bit when a signal is given.

#19
正面 (问题)

What are D-type flip-flops useful for?

背面 (解答)

They’re useful for memory storage and transfer and data synchronisation.

#20
正面 (问题)

Where are D-type flip-flops used?

背面 (解答)

They’re used in memory circuits in CPU registers and RAM.

#21
正面 (问题)

Do you know what a half adder looks like?

背面 (解答)

#22
正面 (问题)

Do you know what a full adder looks like?

背面 (解答)

#23
正面 (问题)

Describe a half adder

背面 (解答)

A logic circuit with 2 inputs (A and B) that are added to produce 2 outputs, S (sum), the result of A XOR B, and C (carry) the result of A AND B. They can only add 2 bits and can’t handle an input carry from a. previous addition.

#24
正面 (问题)

Describe the structure of a full adder and their main use

背面 (解答)

A full adder is an extension of a half adder with 3 inputs: A, B, AND Cin (a carry-in from the previous calculation). It produces 2 outputs: S (sum, which is (A XOR B XOR Cin)) and C out (carry out, which is (A AND B) OR (B AND Cin) OR (A AND Cin)). Full adders can be linked together to perform multi-bit binary addition in arithmetic circuits.