Second Semester_Digital Logic_Question Answer
* Define combination circuit. Explain the operation of octal to binary encoder with circuit diagram and truth table A combinational circuit is a type of digital logic circuit in which the output depends only on the present inputs and not on any past history (no memory). It consists of logic gates (AND, OR, NOT, etc.). The relationship between inputs and outputs can be expressed with Boolean functions or truth tables . Examples: adders, subtractors, encoders, decoders, multiplexers, demultiplexers. Octal to Binary Encoder Concept An encoder converts information from one form (like decimal or octal) into a coded form (like binary). An octal-to-binary encoder has 8 input lines (D0–D7) and 3 output lines (Y2, Y1, Y0) . At any given time, only one input is active (logic 1) , and the output generates the corresponding binary code for that input. Truth Table: Octal-to-Binary Encoder Input Output (Binary) D0=1 Y2Y1Y0 = 000 D1=1 001 D2=1 010 D3=1 011 D4=1 100 D5=1...