About 240,000 results
Open links in new tab
  1. XOR gate - Wikipedia

    The XOR gate (sometimes EOR, or EXOR and pronounced as Exclusive OR or sometimes EX-OR) is a digital logic gate that gives a true (1 or HIGH) output when the number of true inputs is odd.

  2. XOR Gate - GeeksforGeeks

    Jul 23, 2025 · The XOR or Exclusive OR Gate is a special type of logic gate used in digital electronics to perform the exclusive OR operation. This gate takes two inputs and produces an output depending …

  3. XOR Gate - Truth table, Symbol, Diagram & Applications - Easy …

    In this lecture, we are going to learn about the Logic of the XOR Gate in every detail. We will discuss what is XOR gate is, the symbol of the XOR gate, the XOR gate truth table, the XOR gate boolean …

  4. XOR Gate Explained: Symbol, Truth Table, Construction Methods, and ...

    It explains how XOR gates work differently from simple gates like AND, OR, and NOT. You’ll learn about their symbols, truth tables, and how to build them using standard gates, NAND gates, and NOR …

  5. Exclusive OR Gate: XOR Boolean Expression, Diagram

    Sep 17, 2024 · We will learn the symbol, truth table of XOR Gate, implementation using other gates (AND, OR, NAND, NOR), popular XOR ICs and some important applications of Exclusive OR Gate …

  6. XOR Gate — Logicly

    An XOR gate (sometimes referred to by its extended name, Exclusive OR gate) is a digital logic gate with two or more inputs and one output that performs exclusive disjunction. The output of an XOR …

  7. Mastering the Exclusive OR Gate (XOR): Functions, Construction, and ...

    Jul 9, 2025 · This article delves into the intricacies of the XOR gate, exploring its definition, symbolic representation, truth table, and construction using basic logic gates.

  8. Xor gate Definition - Intro to Electrical Engineering Key Term | Fiveable

    An XOR gate, or exclusive OR gate, is a digital logic gate that outputs true or '1' only when the number of true inputs is odd. This means that for two inputs, the output is true if one input is true and the …

  9. XOR gate: Definitions, truth table, symbol, logical expression ...

    An Exclusive OR gate (also named XOR, EOR, EXOR ) is a fundamental digital logic circuit that accepts two inputs and generates an output based on the exclusive OR operation applied to those inputs.

  10. XOR Gates

    Both the XOR and XNOR circuit can be written in Verilog as follows: input A, B, output Y. assign Y = A ^ B; endmodule. input A, B, output Y. assign Y = ~(A ^ B); endmodule. We can create a three-input …