ব্যাখ্যা
These binary values correspond to:
•LOW (0) and HIGH (1) voltage levels
•Logical FALSE and TRUE
•OFF and ON states
Source: Digital Design (6th Global Edition) by M. Morris Mano
৪৯তম বিসিএস ⎯ তথ্য ও যোগাযোগ প্রযুক্তি [২৮১] · তারিখ অনির্ধারিত · ৩০ প্রশ্ন
Source: Digital Design (6th Global Edition) by M. Morris Mano
A sequential circuit is an interconnection of flip-flops and gates. The output of a sequential circuit is a function of the inputs and the present state of its flip-flops. The present state of the flip-flops is a function of previous inputs; hence, sequential circuits have memory.
Examples of sequential circuits:
Counters, Shift registers, Flip-flop–based state machines, Clocks in digital systems.
Source: Digital Logic and Computer Design by M. Morris Mano
The XOR gate compares two binary inputs and outputs 1 if and only if the inputs are different.
Its Boolean expression is:
Truth Table:
Therefore, the XOR gate outputs 1 only when A ≠ B.
Source: Digital Logic and Computer Design by M. Morris Mano
For n variables, minterms = 2ⁿ. For n = 4 ∴ 2⁴ = 16.
A minterm is a product (AND) term in Boolean algebra where each variable appears exactly once, either in true form or complemented.
Each unique combination of input variables corresponds to one minterm.
With 4 variables (A, B, C, D), there are 2⁴ = 16 possible input combinations, so 16 minterms.
Source: Digital Logic and Computer Design by M. Morris Mano
In binary, input D₂ corresponds to 10. The encoder converts the active input line into its binary code.
A 4-to-2 binary encoder converts one active input line into a 2-bit binary output.
For a priority encoder with one active input at a time:
?0=?1+?3
Y1=D2+D3
Truth Table:
So if D₂ = 1, the output is 10 (Y1 = 1, Y0 = 0).
Source: Digital Logic Design by M. Morris Mano
A decoder takes 'n' binary input lines and activates exactly one of ' 2? ' output lines.
In memory address decoding, the binary address from the CPU is applied to the decoder inputs. The decoder then enables only the memory location (or chip) corresponding to that address, ensuring that only the addressed memory responds to the read/write signal.
This is one of the most common real-world uses of decoders in digital systems such as microprocessors and microcontrollers.
Source: Digital Logic Design by M. Morris Mano
A multiplexer (MUX) needs a certain number of selection lines (n) based on the formula:
Number of inputs = 2?
If n = 4 selection lines:
Then Inputs = 24 = 16
This means a 16:1 multiplexer requires 4 selection lines to choose one of its 16 input signals.
Source: Digital Design (6th Global Edition) by M. Morris Mano