EC3352 Digital System Design Two Mark Questions 1
EC3352 Digital System Design Two Mark Questions 1
com
Department Of ECE
QUESTION BANK
Part – A
UNIT-I
BASIC CONCEPTS
=A’C(B+B’)+B’C(A+A’)+A’BC’+AC’(B+B’)+AB
=A’BC+A’B’C+AB’C+A’B’C+A’BC’+ABC’+AB’C’+ABC
=A’BC+A’B’C+AB’C+A’BC’+ABC’+AB’C’+ABC
=m3+m1+m5+m2+m6+m4+m7
=∑m(1,2,3,4,5,6,7)
= xyz+x’y’z’
f. Show that positive logic NAND gate is a negative logic NOR gate.
[Nov/Dec 2009 R-
08]
Truth Table for NAND Gate Truth Table for + ive logic
NAND gate
A B Y A B Y
0 0 1 LOW LOW HIGH
0 1 1 ≡ LOW HIGH HIGH
1 0 1 HIGH LOW HIGH
1 1 0 HIGH HIGH LOW
Positive logic
HIGH=Logic 1
LOW= Logic 0
c. Prove that the logical sum of all minterms of a Boolean function of 2 variables
is 1. [Nov/Dec 2009 R-08]
For two variables A and B minterms are: A’B’,A’B,AB’,AB.
The logical sum of these minterms is,
F= A’B’+A’B+AB’+AB
=A’(B’+B)+A(B’+B)
=A’+A =1
Y=A’B+AB’
b. Find the relation between the I/Ps and O/P, shown in figure. Name the
operation performed. [May 2008]
A
Y
Y = A’.B’ =( A+B)’
This gate performs the NOR operation.
e. A certain gate draws 2 mA when its output is high and 3.6 mA when its output
is low.
What is the average power dissipation if Vcc is 5V and it is operated on a 50%
duty
cycle? (Nov 2006)
Given
ICCH = 2 mA,ICCL = 3.6 mA
The average Icc is given as
ICC(avg) = ICCH + ICCL / 2
= (2+3.6)/2
= 2.8 mA
Then average power dissipation is given as
PD(avg) = ICC(avg) X Vcc
= 2.8 mA X 5V
= 14 mW
UNIT –II
COMBINATIONAL LOGIC CIRCUITS
a. Construct 4-bit parellel adder/subtractor using Full adders and XOR gates
[Nov/Dec2014 R-13]
x y D B
0 0 0 0
0 1 1 1
1 0 1 0
1 1 0 0
10
e. Give the logical expression for sum output and carry output of a full adder .
[Nov/Dec2011 R-10]
Sum :
Carry:
h. Write the logic expressions for the difference and borrow of a half
subtractor. [April/May2011 R-08]
x y D B
11
0 0 0 0
0 1 1 1
1 0 1 0
1 1 0 0
j. Relate Carry generate, Carry Propagate, Sum and Carry-out of a Carry look
ahead adder. [Nov/Dec2010 R-08]
Carry generate Gi=AiBi
Carry Propagate Pi=Ai Ex-or Bi
Sum Si= Pi Ex-or Ci
Carry Ci+1=Gi+PiCi
m. Represent a half adder in block diagram form and also its logic
implementation. (May2006\May2007)
Inputs Y = A+ B
A B carry Sum
0 0 0 0
0 1 0 1
1 0 0 1
1 1 1 0
12
Truth table
13
14
K-map
P = X Y Z + XY Z + XYZ + X Y Z = X Y Z
15
d. Draw a parity checker circuit for 3 bit binary word x1 x2 x3. (May 2006)
16
S. Decoder Demultiplexer
No
1 Decoder is a many inputs to It is a one input to many outputs
many outputs device device.
2 There are no selection lines The selection of specific output line
is controlled by the value if selection
lines.
Multiplexer are used in various fields where multiple data need to be transmitted
using a single line. Following are some of the applications of multiplexers.
17
18
S0 S1 Output
00 I0
01 I1
10 I2
11 I3
A B Y
19
0 0 1
0 1 0
1 0 0
1 1 0
Inputs Outputs
D0 D1 D2 D3 D4 D5 D6 D7 X y z
1 0 0 0 0 0 0 0 0 0 0
X 1 0 0 0 0 0 0 0 0 1
X X 1 0 0 0 0 0 0 1 0
X X X 1 0 0 0 0 0 1 1
X X X X 1 0 0 0 1 0 0
X X X X X 1 0 0 1 0 1
X X X X X X 1 0 1 1 0
X X X X X X X 1 1 1 1
20
UNIT –III
SYNCHRONOUS SEQUENTIAL CIRCUITS
e. Draw the state table and excitation table of T flip-flop. [Nov/Dec2010 R-08],
[April/May2010]
CharacteristicTable Excitation Table
T Q(t+1)
0 Q(t) No Change
1 Q’(t)
Complement
21
a. How does a ripple counter differ from synchrounous counter [Nov/Dec2014 R-13]
Compare the logics of synchronous counter and ripple counter [May/June 2014
R- 2013]
The ripple counter (Asynchrounous counter) differs from synchrounous counter in
such a way that
Asynchrounous counter Synchrounous counter
1. In this type of counter Flip flops 1. In this type there is no connection
are connected in such a way that between output of first flip-flop
output of first flip flop drives the and clock input of the next flip-
clock for the next flip-flop. flop.
2. All the flip-flops are not clocked 2. All the flip-flops are clocked
simultaneously. simultaneously.
3. Logic circuit is very simple even 3. Design involves complex logic
for more number of states. circuit as number of states
increases.
b. Design a 3- bit ring counter and find the mod of the designed counter
[Nov/Dec 2012, R-08]
22
c. A 4 bit binary ripple counter is operated with clock frequency of 1 KHz. What is
the output frequency of its third Flipflop? [Nov/Dec 2011 R-08]
Applications: Counters are used a frequency dividers in digital time pieces, such as
electronic digital clocks,automobile digital clock and wrist watches,frequency
counters,oscilloscope ans television receivers.
f. A binary ripple counter uses 7 flipflops.How many distinct states does the counter
have? What is the largest binary number that can be stored in the ripple
counter? [Nov/Dec 2009]
127 states and the largest binary number is 128(2n)
23
0000
0001
1001
0010
1000
0011
0111
0110 0100
0101
24
c. How many flip flops are required to build a binary counter that counts from 0
to 1023? [May/June 2013 R-08]
e. How D flip flop converted into T flip flop. [Nov/Dec 2012, R-08] [May/June
2013 R-08]
Q Q(n+1) D
0 0 0
0 1 1
1 0 0
1 1 1
25
Q Q(n+1) T
0 0 0
0 1 1
1 0 1
1 1 0
f. Draw the logic diagram of T flip flop using JK flip flop. [Nov/Dec 2011 R-10]
26
0 0 0
0 1 1
1 0 0
1 1 1
Q Q(t+1) J K
0 0 0 X
0 1 1 X
1 0 X 1
1 1 X 0
j. How does a J-K flip-flop differ from an S-R flip flop in its basic operation?
(May 2007),[Nov 2006]
A JK flip-flop is a refinement of the RS flip-flop in that the indeterminate state of
the RS is defined in the JK type. Inputs J and K behave like inputs S and R to set
27
and clear the flip-flop When inputs are applied to both J and K simultaneously, the
flip-flop switches to its complement state, that is ,if Q = 1 it switches to Q = 0 and
vise versa .
l. Draw the logic symbol and truth table of a D flip flop. (May 2008)
Q D Q(t+1)
0 0 0 D Q
0 1 1
Q’
1 0 0
1 1 1
c. How can a SIPO register be used as a SISO register? [Nov/Dec 2011 R-10]
Output of each flip flop must be connected to the input of immediate next flip
flop.The output must be taken from the last flip flop.
d. Draw the logic diagram of 4 bit universal shift register. (May 2007)
e. Classify the register with respect to serial and parallel input output. (May
2007)
28
The shift register can be classified in to (i) Serial in serial out (ii) Serial in parallel
out (iii)parallel in serial out (iv) Parallel in parallel out
UNIT – IV
ASYNCHRONOUS SEQUENTIAL CIRCUITS
begin
Sum <= (not A and B) or (A and not B) after 20 ns;
Carry <= A and B after 10 ns;
end data_flow_view;
b. Draw the block diagram for Moore model. [May/June 2012 R-8]
[April/May2010 R-08]
30
d. Name two techniques used for making a critical race free state assignment.
[Nov/Dec 2009]
• Shared-row state assignment
• One-hot state assignment
f. What are the different types of races that occur in fundamental mode cicuits.(Nov
2007)
The different types of races that occur in fundamental mode circuits are non critical
race and critical race.
g. Compare the ASM chart with a conventional flow chart. [May/June 2013 R-08]
[Nov/Dec 2009 R-08]
ASM chart- A special flow chart that has been developed specifically to define digital
hardware algorithms.
Conventional flowchart-Convenient way to specify the sequence of procedural steps
and decision paths for an algorithm.
32
c. Difference between Fundamental mode and Pulse mode [Nov/Dec 2012 R-08]
33
UNIT –V
LOGIC FAMILIES &PROGRAMMABLE LOGIC DEVICES
c. Mention the few Applications of PLA and PAL [May/June 2012 R-8]
34
PLAs are used to replace ROMs in many applications. They are used for
implementing combinational logic functions, and this results in compact
circuitry and high switching speed.
d. What is the need for output buffer in a PLA system? [Nov/Dec2011 R-10]
e. What is the difference between PLA and PAL. [May/June 2013 R-08]
[Nov/Dec2011 R-08] ,[April/May2011 R-08] [Nov/Dec 2010],
[April/May2010], [Nov/Dec2009 R-08],
1 Both AND and OR arrays are OR array is fixed and AND array
programmable is programmable.
35
characteristics Values
Supply voltage For 74 series-(4.75 to 5.25)units
For 54 series-(4.5 to 5.5)units
Temperature For 74 series-(0o to 70oC)
range For 54 series-(-55oC to 125oC)
Voltage levels VOL(max) –0.4V
VOH(min) –2.4V
VIL(max) –0.8V
VIH(min) -2.0V
Noise margin 0.4V
Power dissipation 10mW per gate
Propagation Typically 10 ns
delay
Fan-out 10
36
(i)The main advantage of a CMOS gate is its remarkable low static Power
dissipation. These circuits take advantage of the fact that NMOS and PMOS
Transistors can be fabricated on the same substrate.
(ii)It has lowest packaging density and high speed.
(iii)Improved noise immunity.
37
38
RAM ROM
5. any memory location can be 1. ROM is not accessible to user and
accessed in a random way hence user can’t write anything
6. It is volatile memory i.e. it store into it
information as long as power is 2. It is a non-volatile memory i.e. it’s
supplied to it. It’s contents are contents are not lost when it’s
lost when power supply is power supply is switched off.
switched off. 3. ROM contents are written at the
7. Its contents can be changed. time of it’s IC fabrication.
8. It is further classified into Static 4. ROM is further classified into
RAM (SRAM) and Dynamic Masked ROM, Programmable
RAM (DRAM) ROM, Erasable Programmable
ROM and Electrical Erasable
Programmable ROM.
Truth table
A B Y
0 0 0
0 1 1
1 0 1
39
1 1 0
B1 B0 A1 A0 Y3 Y2 Y1 Y0
0 0 0 0 0 0 0 0
0 0 0 1 0 0 0 0
0 0 1 0 0 0 0 0
0 0 1 1 0 0 0 0
0 1 0 0 0 0 0 0
0 1 0 1 0 0 0 1
0 1 1 0 0 0 1 0
0 1 1 1 0 0 1 1
1 0 0 0 0 0 0 0
1 0 0 1 0 0 1 0
1 0 1 0 0 1 0 0
40
1 0 1 1 0 1 1 0
1 1 0 0 0 0 0 0
1 1 0 1 0 0 1 1
1 1 1 0 0 1 1 0
1 1 1 1 1 0 0 1
41
a. Draw the logic diagram of static RAM and Bipolar RAM cell [Nov/Dec 2012, R-
08]
Sense Line
Storage capacitor
Control Line
42
Part – B
UNIT –I
1. IMPLEMENTATION USING GATES [Nov/Dec2014 R-13] [May/June 2014
R-2013],[Nov/Dec 2013 R-08],[ [Nov/Dec 2011 R-08],[Nov/Dec2010 R-08]
,[Nov/Dec2010], [April-May 2010 R-08], [Nov/Dec 2009], [Nov 2007] (Nov
2006), (May 2006)
a. Draw the multiple-level two input NAND circuit for the following expression :
F=(AB’+CD’)E+BC(A+B). [Nov/Dec2014 R-13]
b. Implement the expression Y(A,B,C) = πM(0,2,4,5,6) using only NOR-NOR logic.
[May/June 2014 R-2013]
c. Implement EXOR gate using only NAND gates. [May/June 2014 R-2013]
d. Simplify the following function using Tabulation method Y(A,B,C,D) =
∑m(0,1,2,5,6,7,8,9,10,14) and implement using only NAND gates. [May/June
2014 R-2013]
e. Simplify xy + x’ z + yz. (6) (6m) [Nov/Dec2013 R-08]
f. Draw the multiple level NAND circuit for the following expression.
W(X+YZ)+XY. (6m) [Nov/Dec2011 R-08]
g. Draw a NAND logic diagram that implements the complement of the following
function.
F (A,B,C,D)=∑ (0,1,2,3, 4,8,9,12) (8m) [Nov/Dec2010 R-08]
h. Implement the following logic functions using only NAND gates
F=(AB+CD)+C(A+B’D)
T=D(A+B’DC)+A’B+D’). [Nov/Dec2010]
i. Multilevel implememtation may be most common procedure in developing digital
circuits.Justify your answer implementing the function
F=A(CD+B)+BC. [Nov/Dec2010]
j. Implement the following function usin NOR gates.
Output=1 when the inputs are ∑m(0,1,2,3,4) =0 when the inputs are
∑m(5,6,7).(8m) [April-May 2010 R-08]
k. Implement the function F=AB+(CD)’ using NAND gates only. [Nov/Dec 2009]
l. Implement a two input AND gate using NOR gates only. [Nov/Dec 2009]
h. Implement the Boolean expression using gates X= (AB+C)’D +E.
[Nov 2007]
i. Draw the logic symbol of a XNOR gate and give its truth table. [Nov 2007]
j. Sketch a NAND-NAND logic circuit for the boolean expression.
Y = AB’ +AC +BD. [Nov 2007]
43
44
[Nov/Dec 2013 R-8] [Nov/Dec 2012 R-8] [Nov/Dec 2011 R-10],[Nov/Dec 2011
R-08],[April/May2011 R- 08] ,[Nov-Dec 2010 R-08], [April-May 2010 R-08],
[April/May2010], [Nov/Dec 2009 R-08], (Nov 2007)[Nov/Dec2014 R-13]
a. Using Quine Mc Cluskey method simplify the given function [Nov/Dec2014 R-
13]
f (A, B, C,D) = ∑m(0,2,3,5,7,9,11,13,14 )
b. Minimise the given switching function, using Quine-McCluskey method
F(x1, x2, x3, x4) = ∑(0,5,7,8,9,10,11,14,15 )[ May/June 2013 R-08]
l. Write on binary coding. Why to convert from one to another? Discuss Excess 3
code and gray coding.Code your Nation’s name,University you belong to, the
President of India and the new USA President elected using ASCII. Are all error
detection codes correct the errors? Name any error correction code you are
familiar with. [Nov/Dec2010]
45
3. POS and SOP FORM [ May/June 2013 R-08] [ May/June 2012 R-08]
( [April/May 2011 R-08] ,[Nov/Dec 2009 R-08], [Nov/Dec 2009], (Nov 2008),
(Nov 2007)
a. Simplify the given Boolean function into
(I) Sum of products for
(II) Product of sum form and implement if using basic gates
F(A,B,C,D)=∑m(0,1,2,5,8,9,10) [ May/June 2013 R-08]
UNIT II
1. Adder and Multiplier
a. Design a 4-bit decimal adder using 4-bit binary adders [Nov/Dec2014 R-13]
b. Implement the following Boolean functions using Multiplexers.
[Nov/Dec2014 R-13]
F(A,B,C,D)= ∑m(0,1,3,4,8,9,15)
c. Design a 3:8 decoder using basic gates [May/June 2014 R-2013]
d. Explain the working of carry-look ahead adder. [May/June 2014 R-2013]
e. Draw the circuit of BCD adder and explain. [Nov/Dec 2011 R-10],
(Apr/May 2011 R-08),(Nov 2007)
f. What is priority encoder? How is it different from encoder? Draw the circuit of
4-bit priority encoder and explain. [Nov/Dec 2011 R-10]
k. Design a carry look ahead adder with necessary diagrams.(or) Explain the
operation of carry look ahead adder with neat diagram(8m)
[Nov-Dec-2010 R-08][April-May 2010 R-08] [Nov/Dec 2009 R-08], (Nov 2008)
47
g. `Draw and explain the block diagram of a 4-bit serial adder to add the contents of
two registers.(10m) [April-May 2010 R-08]
h. Multiply (1011)2 by (1101)2 using addition and shifting operation also draw block
diagram of the 4-bit by 4 bit parallel multiplier.(8m)
[April-May R-08]
48
49
UNIT-III
1. State Table Redution
a. Reduce the number of states in the following state table and tabulate the reduced state
stable.(6m)
b. Design a sequential circuit with two D Flipflops A and B and an input x. When x = 0
the state of the circuit remains the same. When x =1 the circuit goes through the state
transitions from 00 to 01 to 11 to 10 back to 00 and repeats.(10 m)
[ Nov/Dec 2011 R-08]
50
51
Draw the block diagram of SR—FF and explain. (6) [Nov/Dec 2013R-08]
d. Explain about triggering of flip-flops. (10) [Nov/Dec 2013R-08]
e. Design and draw the output waveform of UP/DOWN Counter using JKFF
[May/June 2012 R-08]
f. Design a sequence detector which detects the sequence ‘01110’ using D
flip flops (one bit overlapping) [Nov/Dec 2012 R-08]
g. A sequential circuit has three D flip flops. A, B and C and one input x. It is
desired by the following flip flop input functions
DA= (BC’+B’C)x +(BC+ B’C’ )x’
DB=A, DC=B
h. Derive the state table for the circuit and draw two state diagrams for x = 0, and
other for x = [Nov/Dec 2011 R-10]
f. Draw the logic diagram of master-slave SR flip flop and explain its working with truth
table. (10m)[Nov/Dec 2011 R-10]
g. Design a D flip flop using J-K flip flop and explain with its truth table.(6m)
[ Nov/Dec 2011 R-10]
h. Design the following synchronous sequential circuit using D flip
flop and logic gates.[Apr/May 2011 R-08].
52
53
m. Design a BCD up/down counter using S-R flip flops. [April/May 2010]
n. Design a negative-edge triggered ‘T flipflop’(16m) [Nov/Dec 2009-R-08]
o. (i)How will you convert a D flipflop into JK flipflop?(8m)
[Nov/Dec 2009 R-08], ( Nov 2008)
p. Draw the circuit for a D Latch using NAND gates only [Nov/Dec 2009]
q. Convert a T-flipflop to a D flip flop. [Nov/Dec 2009]
r. A state diagram of a sequential circuit is given below. The circuit has one
input and one output. Design sequential circuit using T flipflps.
[Nov/Dec 2009]
s. Design a sequential circuit with JK flip flop to satisfy the following state
equations.( Nov 2008)
A(t+1)=A’B’CD+A’B’C+ACD+AC’D’
B(t+1)=A’C+CD’+A’BC’
C(t+1)=B
D(t+1)=D’
54
t. Design the sequential circuit whose state table is given as(Nov 2007)
u. Draw the four bit Johnson counter and explain the operation.
(Nov 2006/May 2007)
v. Draw the clocked RS flip flop and explain with truth table.(May 2007)
w. Reduce the state table using implication chart method.(Nov 2006)
Present state a b c d e f g
Next State X = 0 a c a e a g a
Next state X = 1 b d d f f f f
Output 0 0 0 1 1 1 1
UNIT-IV
1. Classification of Memories
a. Discuss in detail about the classifications of memories. (16) [Nov-Dec 2013 R-
08],
b. i. Describe the two dimensional address decoding scheme of typical DRAM in
detail. (8)
ii.Given the 32 × 8 ROM chip with enable input, show the external connection
necessary to construct a 128 × 8 ROM with four chips and a decoder.(8m)
[Nov/Dec 2011 R-08]
c. Design a combinational circuit using a ROM. The circuit accepts a 3-bit
number and generates an output binary number equal to the square of the input
number.(10m)
d. Briefly explain the EPROM and EEPROM technology. [Apr/May 2011 R-08]
e. With logic diagram, explain the basic macrocell. [ Apr/May 2011 R-08]
f. What are the advantages of FPGA? [Nov/Dec 2011 R-10]
2. RAM [Nov/Dec 2014 R-13] [May/June 2014 R-13] [May/June 2012 R-08]
[May/June 2013 R-08],[ [May/June 2012 R-08], [Nov/Dec 2011 R-10],[Nov-Dec
2010 R-08], [April/May2010], [ Nov-Dec 2010 R-08] (Nov 2007), [May2006]
a. Using eight 64x8 ROM chips with an enable input and a decoder, construct a
512x8 ROM [Nov/Dec 2014 R-13]
b. Write short notes on EAPROM and static RAM cell using MOSFET [Nov/Dec
2014 R-13]
55
c. Explain the read cycle and write cycle timing parameters of a RAM with the help
of timing diagram [May/June 2014 R-13]
d. Draw the Dynamic RAM cell and explain its operation [May/June 2014 R-13]
e. Design and explain a 32 x 8 ROM [May/June 2013 R-08]
f. Write short notes on
(a) Memory decoding (8) (b) Memory expansion (8)
[Nov/Dec 2012 R-08] [May/June 2012 R-08]
c. Discuss the classification of ROM and ROM memories (8) [May/June 2012 R-08]
d. Explain the operation of static and dynamic MOS RAM cell with necessary
diagrams. [Nov/Dec 2011 R-10]
e. Explain the Read and Write cycles of RAM (or) Explain read and write
operation of memory with timing waveforms.(8m)
[Nov-Dec 2010 R-08], [April/May2010]
f. Write short notes on :
a.MemoryDecoding. [May 2006]
b.RAM. .(8m) [Nov-Dec 2010 R-08] (Nov 2007), [May 2006]
g. Obtain the PLA programming table for the combinational circuit with following
function.
A (x, y, z) = Σ (1, 2, 4, 6)
B (x, y, z) = Σ (0, 1, 6, 7)
C (x, y, z) = Σ (2, 6)
D (x, y, z) = Σ (1, 2, 3, 5, 7) [Nov/Dec 2011 R-08]
56
h. Implement the following functions using 3 input, 4 product term and 2 output PLA
F = AB’ + AC + A’BC’
F = (AC + BC)’ [Apr/May 2011 R-08]
(2)EPROM(Nov 2006)
(3)EEPROM(Nov 2006)
(4)EAPROM
(or) Explain in detail the various classification of memories.(or) Categories RAM
and ROM and explain in detail.
[April/May2010], [Nov/Dec 2009], [Nov 2008] , [Nov 2007], (May 2007)
r. Design a combinational circuit using ROM. The circuit accepts a three bit
number and outputs a binary number equal to the square of the input
number.(16m) [Nov/Dec 2009 R-08]
s. Design a 16 bit ROM array and explain the operation. (May 2008)
t. Design the given function using PAL and PROM
F1 = ∑m(0,1,4,5,7,9,11,13)
F2 = ∑m(1,3,5,6,9,11,14,15) (Nov 2007)
u. Explain the basic structure of 256X 4 static RAM with neat sketch.
(May 2007), (Nov 2006)
v. Explain the following terms:
(i)Dynamic memory
(ii)Volatile storage
(iii)Field programmable memory.
(iv)Mask programmable memory. (Nov 2006)
w. Elaborate the single fused PROM cell with clear sketch. Nov 2006)
x. (i)Illustrate the concept of 16 X 8 bit ROM arrange with diagram.
(ii) Describe the typical ROM internal organization with necessary diagram.
(Nov 2006)
y. (i) How can one make 64X8 ROM using four 32X4 ROMs? Draw such a
circuit and explain.
(ii) Implement binary to excess 3 code converter using ROM.(May 2006)
58
UNIT-V
1. TTL and CMOS [Nov/Dec2014 R-13] [Nov/Dec 2012 R-8] [Nov/Dec 2011 R-
08],[Nov/Dec 2011 R-08],[April-May 2011 R-08], [Nov/Dec2010],[April-
May2010 R-08].[April/May2010], [Nov/Dec 2009],( May 2008) ,(Nov 2007),
(May 2007), {(May 2007), (Nov 2006/May 2006)
a. Draw and explain Tri-state TTL inverter circuit diagram and explain its operation.
[Nov/Dec2014 R-13]
b. Draw the circuit diagram of two input TTL NAND gate with tri state output and explain its
action clearly showing Logic and voltage levels [Nov/Dec
2012 R-8]
c. Draw a TTL circuit with totem pole output and explain its working.
[Nov/Dec 2011 R-10]
a. With neat diagram, explain the operation of CMOS NAND and NOR gates .
[Nov/Dec 2011 R-10]
b. Explain the operation of open collector output TTL NAND gate in detail.
[Nov/Dec2010 R-08]
e. Draw the schematic and explain the operation of a CMOS inverter. Also explain its
characteristics.(8m) [ April-May 2011 R-08]
f. Name the five important characteristics based on which the different logic families are
compared. Give the ranges for the above in the case of TTL and CMOS families.
[Nov/Dec2010]
g. Discuss the general characteristic of TTL and CMOS logic families.(8m)
[April-May 2010 R-08]
a. Draw the circuit of 2 input CMOS NAND gate and explain its operation (or) Explain
the operation of CMOS NAND and NOR gate with the circuit and truth table.
[April/May2010], [Nov/Dec 2009]( May 2008)
b. Draw a 2 input NAND gate using schottky TTL logic and explain its operation.
(Nov 2007)
j. What are the different types of TTL gates available? Explain their operation taking
suitable example. (May 2007)
k. Draw the circuit diagram of 2 input CMOS NAND gate using CMOS logic and explain
their operation.(May 2007)
l. Analyse the performance characteristics of TTL and CMOS logic.
(May 2007), (Nov 2006/May 2006)
1. m. Explain the operation of tristate inverter.[April/May2010]
RACES [Nov-Dec 2010 R-08], [April/May2010], (May 2007),( Nov 2006)
a. (i)Differentiate critical races from non critical races.(6m)[Nov-Dec 2010 R-08]
(ii)Explain the problem of non critical and critical races in asynchronous
sequential circuits with suitable examples.(or) Define the following terms:
(a) Critical race
(b) Non critical race
(c)Hazard
(d)Flow table [April/May2010], (May 2007),( Nov 2006)
b.Discuss a method used for race free assignment with example
(May 2007), (Nov 2006)
c.Explain the involved in the reduction of state table.(10m)[Nov-Dec 2010 R-08]
59
f. What is an Hazard? What are the types of hazards? Check whether the
following circuit contains an hazard or not
Y = x1 x2 + x2 ′ x3
If the hazard is present, demonstrate its removal.[Apr/May 2011 R-08]
g. What are called as essential hazards? How does the hazard occur in
sequential circuits? How can the same be eliminated using SR latches
.Dive an example(16m)[April-May 2010 R-08]
h. What is Hazard? What are its types? How to minimize and eliminate the
hazards based on their types? (or)Explain the term ‘Hazard’ with reference
to combinational circuit with appropriate example. (or) Explain in detail
static, dynamic and essential hazards in a digital circuit [Nov/Dec2010]
[Apr’10], [Nov/Dec 2009] ,[Nov 2008],[Nov 2007][May 2007],[Nov
2006]
60
i. Describe the fundamental mode asynchronous sequential circuits and its design
problem. [Nov/Dec2010]
j. Give the hazard free realization for the Boolean equation
F(A,B,C,D)= ∑m(1,3,6,7,13,15).[Nov/Dec 2009]
k. Analyse the following circuit right from the primitive state/flow table,state
assignment and excitation table. [Nov/Dec2010]
61
62
63