Definitions DECO
Definitions DECO
1. Combinational Circuit
- Definition : A circuit where the output is determined only by the current input
values, without any memory or feedback.
- Working : It takes multiple inputs and produces outputs based on logical
operations (like AND, OR, NOT). For example, a simple circuit that adds two numbers
would immediately give the sum based on the inputs.
2. Sequential Circuit
- Definition : A circuit where the output depends on both the current inputs and
the past inputs (because it uses memory elements like flip-flops).
- Working : These circuits store information from previous inputs, which helps them
determine future outputs. They are used in devices that need to "remember" things,
like counters, clocks, and registers.
3. Adder
- Definition : A circuit that performs addition of two or more binary numbers.
- Working : The simplest adder is a half-adder (adds two single bits), and a full-
adder can add three bits (two input bits and one carry bit). These adders form the
base of more complex arithmetic units in processors.
4. Subtractor
- Definition : A circuit that performs subtraction of binary numbers.
- Working : Like an adder, a half-subtractor subtracts two single bits, while a full-
subtractor subtracts three bits (two input bits and a borrow bit). Subtractors are used
in arithmetic logic units (ALUs).
5. Comparator
- Definition : A circuit that compares two binary numbers and determines their
relationship (equal, greater, or less).
- Working : It outputs signals like "A > B", "A = B", or "A < B" based on the
comparison. Comparators are used in devices like processors and sorting systems.
1|Page
DEFINITIONS
6. Multiplexer (MUX)
- Definition : A circuit that selects one of many input signals and forwards the
selected input to the output.
- Working : It has multiple inputs but only one output. By using selection lines, you
can choose which input should be passed to the output. For example, if you have 4
inputs, a 2-bit selection signal can choose any one of them.
7. Demultiplexer (DEMUX)
- Definition : A circuit that takes a single input and directs it to one of many
outputs.
- Working : It's the reverse of a multiplexer. With a selection line, it routes the input
to the correct output. For example, if there’s one input and 4 possible outputs, the
selection line will decide where the input goes.
8. Encoder
- Definition : A circuit that converts information from 2^n inputs to n outputs
(binary code).
- Working : It takes multiple input signals, like button presses, and encodes them
into a smaller number of output lines. It’s used when you need to compress data, like
in keyboards or sensors.
9. Decoder
- Definition : A circuit that converts n inputs to 2^n outputs (opposite of an
encoder).
- Working : It takes a binary input and activates one specific output based on that
input. For example, it can convert a binary number to a decimal output, like turning
"101" into the 5th output in a series.
3|Page
DEFINITIONS
- NOT gate : Outputs the opposite of the input (1 becomes 0, 0 becomes 1).
These gates can be combined to create complex circuits for performing tasks like
adding, comparing, storing, and transmitting data.
4|Page