1Which of the following statements characterizes a combinational logic circuit?
A.The output depends only on the present input values.
B.The output depends on present inputs and past output states.
C.It requires a clock signal to operate.
D.It contains memory elements like flip-flops.
Correct Answer: The output depends only on the present input values.
Explanation:Combinational logic circuits are defined by outputs that are determined solely by the current logical state of the inputs, without memory or feedback paths.
Incorrect! Try again.
2In a Half Adder circuit, what is the boolean expression for the Carry output () given inputs and ?
A.
B.
C.
D.
Correct Answer:
Explanation:A Half Adder produces a Carry output only when both inputs are high. Thus, the expression is the AND operation: .
Incorrect! Try again.
3How many inputs and outputs does a Full Adder have?
A.2 inputs, 2 outputs
B.3 inputs, 2 outputs
C.3 inputs, 3 outputs
D.2 inputs, 1 output
Correct Answer: 3 inputs, 2 outputs
Explanation:A Full Adder takes three inputs (A, B, and Carry-in) and produces two outputs (Sum and Carry-out).
Incorrect! Try again.
4The Sum output () of a Full Adder with inputs and is given by:
A.
B.
C.
D.
Correct Answer:
Explanation:The Sum bit represents the parity of the inputs and is calculated using the XOR operation across all three inputs: .
Incorrect! Try again.
5Which of the following logic circuits can be used to implement a Full Adder?
A.One Half Adder and one OR gate
B.Two Half Adders and one OR gate
C.Two Half Adders and one AND gate
D.Two OR gates and two AND gates
Correct Answer: Two Half Adders and one OR gate
Explanation:A Full Adder can be constructed by cascading two Half Adders and using an OR gate to combine the carry outputs of the two Half Adders.
Incorrect! Try again.
6In a Half Subtractor, the boolean expression for the Difference () is same as:
A.The Carry in a Half Adder
B.The Sum in a Half Adder
C.The Borrow in a Half Subtractor
D.The Output of a NOR gate
Correct Answer: The Sum in a Half Adder
Explanation:Both the Difference in a Half Subtractor and the Sum in a Half Adder are calculated using the XOR operation ().
Incorrect! Try again.
7What is the boolean expression for the Borrow output () of a Half Subtractor subtracting from ()?
A.
B.
C.
D.
Correct Answer:
Explanation:A borrow is generated only when we try to subtract a 1 from a 0 (). Therefore, .
Incorrect! Try again.
8The main disadvantage of a Ripple Carry Adder is:
A.It requires too many gates.
B.It consumes high power.
C.The propagation delay increases linearly with the number of bits.
D.It cannot perform subtraction.
Correct Answer: The propagation delay increases linearly with the number of bits.
Explanation:In a Ripple Carry Adder, the carry bit must propagate through every stage from LSB to MSB, causing a significant delay known as propagation delay.
Incorrect! Try again.
9Which adder design is used to reduce the carry propagation delay found in parallel adders?
A.Ripple Carry Adder
B.Look-Ahead Carry Adder
C.Serial Adder
D.Half Adder
Correct Answer: Look-Ahead Carry Adder
Explanation:The Look-Ahead Carry Adder calculates carry bits based on inputs simultaneously, eliminating the 'ripple' delay.
Incorrect! Try again.
10A digital magnitude comparator compares two binary numbers and . Which logic gate represents the equality output () for a single bit?
A.XOR
B.XNOR
C.NAND
D.AND
Correct Answer: XNOR
Explanation:The XNOR gate outputs 1 (True) only when inputs are identical (both 0 or both 1), representing equality.
Incorrect! Try again.
11A Multiplexer (MUX) is also known as a:
A.Data Distributor
B.Data Selector
C.Encoder
D.Decoder
Correct Answer: Data Selector
Explanation:A Multiplexer selects one of several input signals and forwards the selected input into a single line, acting as a data selector.
Incorrect! Try again.
12If a Multiplexer has selection lines, how many maximum input lines can it support?
A.
B.
C.
D.
Correct Answer:
Explanation:The number of inputs in a MUX is determined by , where is the number of select lines.
Incorrect! Try again.
13How many selection lines are required for an 8-to-1 Multiplexer?
A.1
B.2
C.3
D.8
Correct Answer: 3
Explanation:Since , an 8-to-1 MUX requires 3 selection lines.
Incorrect! Try again.
14Which combinational circuit is used to convert parallel data into serial data?
A.Decoder
B.Demultiplexer
C.Multiplexer
D.Comparator
Correct Answer: Multiplexer
Explanation:A Multiplexer takes parallel inputs and, by cycling through select lines, outputs them one by one on a single line (Serial).
Incorrect! Try again.
15A Demultiplexer is effectively a:
A.Many-to-one switch
B.One-to-many switch
C.Code converter
D.Parity generator
Correct Answer: One-to-many switch
Explanation:A Demultiplexer takes a single input line and routes it to one of several output lines, acting as a one-to-many switch.
Incorrect! Try again.
16A 1-to-4 Demultiplexer can be implemented using:
A.A 2-to-4 Decoder with the enable input acting as the data input.
B.A 4-to-1 Multiplexer.
C.A 4-bit Encoder.
D.Two Half Adders.
Correct Answer: A 2-to-4 Decoder with the enable input acting as the data input.
Explanation:DeMUX and Decoder circuits are very similar. A 2-to-4 decoder becomes a 1-to-4 DeMUX if the data is sent into the Enable pin and the select lines are used as address inputs.
Incorrect! Try again.
17A Decoder with input lines can have a maximum of _____ output lines.
A.
B.
C.
D.
Correct Answer:
Explanation:A decoder decodes an -bit binary code into one of unique output lines.
Incorrect! Try again.
18Which circuit is primarily used for address decoding in memory systems?
A.Encoder
B.Decoder
C.Multiplexer
D.Adder
Correct Answer: Decoder
Explanation:Decoders are used to select specific memory locations based on binary address inputs.
Incorrect! Try again.
19What is the function of an Encoder?
A.Convert binary code to decimal
B.Convert an active input signal into a coded binary output
C.Select one output from multiple inputs
D.Compare two binary numbers
Correct Answer: Convert an active input signal into a coded binary output
Explanation:An encoder performs the inverse function of a decoder, generating a binary code corresponding to the active input line.
Incorrect! Try again.
20In a Priority Encoder, if two or more inputs are active simultaneously, what happens?
A.The output becomes undefined.
B.The circuit burns out.
C.The input with the highest priority is encoded.
D.The input with the lowest priority is encoded.
Correct Answer: The input with the highest priority is encoded.
Explanation:Priority encoders are designed to handle simultaneous inputs by only encoding the input assigned the highest priority level.
Incorrect! Try again.
21A Decimal-to-BCD encoder has inputs and outputs.
A.4 inputs, 10 outputs
B.10 inputs, 4 outputs
C.16 inputs, 4 outputs
D.8 inputs, 3 outputs
Correct Answer: 10 inputs, 4 outputs
Explanation:Decimal digits (0-9) require 10 input lines, and BCD (Binary Coded Decimal) requires 4 bits to represent digits up to 9.
Incorrect! Try again.
22Which logic gate is best suited for designing a Parity Generator/Checker?
A.NAND
B.NOR
C.XOR
D.AND
Correct Answer: XOR
Explanation:XOR gates are modulo-2 adders. Cascading XOR gates calculates the parity (odd/even) of a bit stream efficiently.
Incorrect! Try again.
23An even parity generator produces a '1' output when:
A.The total number of 1s in the input is even.
B.The total number of 1s in the input is odd.
C.All inputs are 0.
D.All inputs are 1.
Correct Answer: The total number of 1s in the input is odd.
Explanation:To maintain 'Even Parity', the total count of 1s (including the parity bit) must be even. If the input data has an odd number of 1s, the generator outputs a 1 to make the total even.
Incorrect! Try again.
24Which of the following describes 'Fan-out' in logic families?
A.The time taken for the output to change state.
B.The number of logic gates on a single chip.
C.The maximum number of standard load inputs a logic gate output can drive.
D.The power dissipated by the gate.
Correct Answer: The maximum number of standard load inputs a logic gate output can drive.
Explanation:Fan-out defines the drive capability of a logic gate, specifically how many subsequent gates it can power without signal degradation.
Incorrect! Try again.
25The 'Noise Margin' of a logic family refers to:
A.The maximum frequency of operation.
B.The ability of the logic circuit to tolerate extraneous voltage fluctuations.
C.The minimum power required to operate.
D.The delay between input and output.
Correct Answer: The ability of the logic circuit to tolerate extraneous voltage fluctuations.
Explanation:Noise margin is the difference between the actual signal voltage and the threshold voltage, representing the circuit's immunity to noise.
Incorrect! Try again.
26Which Figure of Merit is used to compare different logic families?
A.Fan-in Fan-out
B.Propagation Delay Power Dissipation
C.Noise Margin Voltage
D.Supply Voltage Current
Correct Answer: Propagation Delay Power Dissipation
Explanation:The Power-Delay Product (measured in Joules) is the standard figure of merit balancing speed and power consumption.
Incorrect! Try again.
27TTL stands for:
A.Transistor-Transistor Logic
B.Transistor-Transformer Logic
C.Transistor-Time Logic
D.Three-Transistor Logic
Correct Answer: Transistor-Transistor Logic
Explanation:TTL is a logic family built from bipolar junction transistors.
Incorrect! Try again.
28The input stage of a standard TTL NAND gate typically contains:
A.A MOSFET.
B.A multi-emitter transistor.
C.A Zener diode.
D.A capacitor.
Correct Answer: A multi-emitter transistor.
Explanation:Standard TTL gates use a multi-emitter BJT at the input stage to perform the AND logic function.
Incorrect! Try again.
29Which output configuration in TTL allows for 'Wired-AND' connections?
A.Totem-Pole Output
B.Open Collector Output
C.Tri-state Output
D.Push-Pull Output
Correct Answer: Open Collector Output
Explanation:Open collector outputs provide a high-impedance state when off and require a pull-up resistor. Connecting multiple open collectors creates a Wired-AND logic.
Incorrect! Try again.
30What is the primary advantage of the 'Totem-Pole' output configuration in TTL?
A.It allows Wired-AND connections.
B.It reduces power consumption to zero.
C.It provides high operating speed and high fan-out capability.
D.It reduces the number of transistors.
Correct Answer: It provides high operating speed and high fan-out capability.
Explanation:The Totem-Pole arrangement (one transistor pulls up, one pulls down) provides low output impedance in both states, allowing faster switching and higher drive.
Incorrect! Try again.
31Why should Totem-Pole outputs never be connected together?
A.It causes a short circuit resulting in high current damage.
B.It creates a high impedance state.
C.It reduces the noise margin.
D.It slows down the circuit.
Correct Answer: It causes a short circuit resulting in high current damage.
Explanation:If one gate tries to pull high while the connected gate pulls low, a direct low-resistance path from Vcc to Ground is created, likely destroying the transistors.
Incorrect! Try again.
32An unconnected (floating) input in a standard TTL gate acts as a logic:
A.Low (0)
B.High (1)
C.Undefined
D.Oscillating
Correct Answer: High (1)
Explanation:In TTL, a floating emitter doesn't conduct current out of the base, effectively behaving as if a High logic level were applied.
Incorrect! Try again.
33MOS logic families rely primarily on which component?
A.Bipolar Junction Transistors (BJT)
B.Field Effect Transistors (FET)
C.Diodes
D.Vacuum Tubes
Correct Answer: Field Effect Transistors (FET)
Explanation:MOS stands for Metal-Oxide-Semiconductor, which refers to the structure of MOSFETs used in this logic family.
Incorrect! Try again.
34CMOS stands for:
A.Complex Metal Oxide Semiconductor
B.Complementary Metal Oxide Semiconductor
C.Capacitive Metal Oxide Semiconductor
D.Charged Metal Oxide Semiconductor
Correct Answer: Complementary Metal Oxide Semiconductor
Explanation:CMOS uses complementary pairs of p-type and n-type MOSFETs.
Incorrect! Try again.
35A CMOS inverter consists of:
A.Two NMOS transistors connected in series.
B.One NMOS and one PMOS transistor connected in series.
C.Two PMOS transistors connected in parallel.
D.One NMOS transistor and a resistor.
Correct Answer: One NMOS and one PMOS transistor connected in series.
Explanation:The basic CMOS building block is the inverter, formed by a PMOS (pull-up) and an NMOS (pull-down) connected gate-to-gate and drain-to-drain.
Incorrect! Try again.
36What is the primary advantage of CMOS logic over TTL?
A.Higher switching speed
B.Extremely low static power consumption
C.Higher current drive capability
D.Lower manufacturing cost
Correct Answer: Extremely low static power consumption
Explanation:CMOS circuits consume almost zero power when static (not switching) because there is no direct path from supply to ground.
Incorrect! Try again.
37In a CMOS circuit, power dissipation increases significantly with:
A.Decrease in temperature
B.Increase in operating frequency
C.Decrease in supply voltage
D.Increase in load resistance
Correct Answer: Increase in operating frequency
Explanation:CMOS dynamic power is proportional to frequency (). As switching speed increases, capacitive charging/discharging consumes more power.
Incorrect! Try again.
38Which logic family typically has the highest noise margin?
A.TTL
B.ECL
C.CMOS
D.RTL
Correct Answer: CMOS
Explanation:CMOS logic generally has noise margins around 30-45% of the supply voltage, which is significantly higher than TTL.
Incorrect! Try again.
39ECL (Emitter Coupled Logic) is best known for its:
A.Low Power Consumption
B.High Speed
C.High Noise Margin
D.High Integration Density
Correct Answer: High Speed
Explanation:ECL operates transistors in the active region (non-saturated), preventing storage delay, making it the fastest logic family (though power hungry).
Incorrect! Try again.
40Tri-state logic devices have three states: High, Low, and _____.
A.Super High
B.High Impedance (Hi-Z)
C.Negative
D.Oscillating
Correct Answer: High Impedance (Hi-Z)
Explanation:The third state effectively disconnects the output from the bus, allowing multiple devices to share a common data line.
Incorrect! Try again.
41To implement the boolean function using a Multiplexer, which MUX size is appropriate?
A.4:1 MUX
B.8:1 MUX
C.2:1 MUX
D.16:1 MUX
Correct Answer: 8:1 MUX
Explanation:With 3 variables (A, B, C), there are possible minterms. An 8:1 MUX can implement this directly by connecting inputs to High/Low based on the minterms.
Incorrect! Try again.
42Which device allows a 7-segment display to show decimal numbers based on a 4-bit input?
A.4:1 Multiplexer
B.BCD to 7-segment Decoder
C.Priority Encoder
D.Full Adder
Correct Answer: BCD to 7-segment Decoder
Explanation:This specific decoder takes a 4-bit BCD input and activates the specific segments (a-g) required to display the number.
Incorrect! Try again.
43The propagation delay of a logic gate is measured in:
A.Milliseconds (ms)
B.Microseconds (s)
C.Nanoseconds (ns)
D.Picofarads (pF)
Correct Answer: Nanoseconds (ns)
Explanation:Modern logic gate delays are very short, typically measured in nanoseconds.
Incorrect! Try again.
44In CMOS logic, the PMOS transistor is ON when the gate voltage is:
A.High (Logic 1)
B.Low (Logic 0)
C.Floating
D.Equal to Drain voltage
Correct Answer: Low (Logic 0)
Explanation:PMOS transistors are active-low devices; they conduct when the gate voltage is Low (0V).
Incorrect! Try again.
45Which of the following is a Unipolar logic family?
A.TTL
B.ECL
C.DTL
D.NMOS
Correct Answer: NMOS
Explanation:NMOS uses Field Effect Transistors which are unipolar (current carried by majority carriers only), whereas TTL and ECL use BJTs (bipolar).
Incorrect! Try again.
46How many 3-to-8 line decoders are necessary to construct a 4-to-16 line decoder?
A.1
B.2
C.3
D.4
Correct Answer: 2
Explanation:Two 3-to-8 decoders can be combined. The 4th input bit drives the Enable pins (one inverted, one non-inverted) to select between the two decoders.
Incorrect! Try again.
47What is the equivalent resistance of a CMOS input?
A.Very Low
B.Zero
C.Very High
D.Depends on the frequency
Correct Answer: Very High
Explanation:The Gate of a MOSFET is insulated by an oxide layer, resulting in extremely high input impedance.
Incorrect! Try again.
48Which of the following circuits can be used to compare two 4-bit numbers?
A.7485 Magnitude Comparator
B.7400 NAND Gate
C.7404 Inverter
D.7432 OR Gate
Correct Answer: 7485 Magnitude Comparator
Explanation:The 7485 is a standard MSI (Medium Scale Integration) chip designed specifically for comparing 4-bit binary numbers.
Incorrect! Try again.
49In a Full Subtractor, the Borrow Out expression is . What does represent?
A.Binary Input
B.Borrow from the previous lower significant position
C.Borrow sent to the next higher significant position
D.The difference bit
Correct Answer: Borrow from the previous lower significant position
Explanation:Like the Carry-in in an adder, represents a borrow requirement propagating from the previous bit position.
Incorrect! Try again.
50Why are CMOS devices susceptible to damage from static electricity?
A.Because of low input impedance.
B.Because of the thin oxide layer at the gate inputs.
C.Because they operate at high voltages.
D.Because they have no protection diodes.
Correct Answer: Because of the thin oxide layer at the gate inputs.
Explanation:The gate oxide is very thin and acts as a capacitor. High voltage static discharge can easily puncture this insulation, permanently damaging the device.