Summary
Logic gates are fundamental components of digital circuits, operating with binary states (0 or 1) to represent electrical voltage presence or absence.
- Logic Gate — a device that performs a basic operation on electrical signals. Example: Used in digital circuits to process binary data.
- NOT Gate — a gate with one input and one output that inverts the input. Example: If input is 1, output is 0.
- AND Gate — a gate where the output is true only if all inputs are true. Example: If inputs are 1 and 1, output is 1.
- OR Gate — a gate where the output is true if at least one input is true. Example: If inputs are 0 and 1, output is 1.
- NAND Gate — a gate combining AND and NOT, output is false only if all inputs are true. Example: If inputs are 1 and 1, output is 0.
- NOR Gate — a gate combining OR and NOT, output is true only if all inputs are false. Example: If inputs are 0 and 0, output is 1.
- XOR Gate — a gate where the output is true if only one input is true. Example: If inputs are 0 and 1, output is 1.
Exam Tips
Key Definitions to Remember
- Logic Gate: A device that performs a basic operation on electrical signals.
- NOT Gate: Inverts the input signal.
- AND Gate: Output is true only if all inputs are true.
- OR Gate: Output is true if at least one input is true.
- NAND Gate: Combines AND and NOT operations.
- NOR Gate: Combines OR and NOT operations.
- XOR Gate: Output is true if only one input is true.
Common Confusions
- Mixing up the outputs of AND and OR gates.
- Confusing the operation of NAND and NOR gates.
Typical Exam Questions
- What is the output of an AND gate with inputs 1 and 0? Answer: 0
- How does a NOT gate affect an input of 1? Answer: It outputs 0
- What is the output of a NOR gate with inputs 0 and 1? Answer: 0
What Examiners Usually Test
- Ability to draw and interpret truth tables for different gates.
- Understanding the function and notation of each logic gate.