Vous êtes sur la page 1sur 3

www.eeecube.blogspot.

com




w
w
w
.
e
e
e
c
u
b
e
.
b
l
o
g
s
p
o
t
.
c
o
m

Reg. No. :


B.E./B.Tech. DEGREE EXAMINATION, APRIL/MAY 2010
Fourth Semester
Electrical and Electronics Engineering
EE2255 DIGITAL LOGIC CIRCUITS
(Regulation 2008)
Time: Three hours Maximum: 100 Marks
Answer ALL Questions
PART A (10 2 = 20 Marks)
1. Show that
(a) b a b a a + = + '
(b) ' ' ' ' ' ' xy z x xy yz x z y x + = + + .
2. Draw the Truth table and logic circuit of half adder.
3. Draw the circuit of SR Flip flop.
4. What are synchronous sequential circuits?
5. Give the characteristic equation and state diagram of JK flip flop.
6. What is a self starting counter?
7. What is the advantage of PLA over ROM?
8. Which IC family offers (a) low propagation delay, and (b) low power dissipation?
9. Write HDL for half adder.
10. What are the various modeling techniques in HDL?
Question Paper Code: E3090
www.eeecube.blogspot.com




w
w
w
.
e
e
e
c
u
b
e
.
b
l
o
g
s
p
o
t
.
c
o
m
E 3090 2
PART B (5 16 = 80 Marks)
11. (a) (i) Simplify using k-map
) 14 , 13 , 12 , 9 , 8 , 6 , 5 , 4 , 2 , 1 , 0 ( ) , , , ( = z y x w F . (8)
(ii) Design a BCD to Excess-3 code converter. (8)
Or
(b) (i) Solve ) 13 , 12 , 10 , 8 , 0 ( ) 11 , 6 , 4 , 3 , 1 ( ) , , , ( d m z y x w g + = . (8)
(ii) Design a decimal adder to add two decimal digits. (8)
12. (a) Design a synchronous sequential circuit using JK for the given state
diagram. (16)

Or
(b) Design a BCD counter using T flip flop. (16)
13. (a) Design BCD ripple counter using JK flip flop. (16)
Or
(b) (i) Reduce the number of states in the following state table. (12)
Present state
Next state Output
x = 0 x = 1 x = 0 x = 1
a f b 0 0
b d c 0 0
c f e 0 0
d g a 1 0
e d c 0 0
f f b 1 1
g g h 0 1
h g a 1 0
(ii) Starting from a, find the output sequence generated with input
sequence 01110010011. (4)
www.eeecube.blogspot.com




w
w
w
.
e
e
e
c
u
b
e
.
b
l
o
g
s
p
o
t
.
c
o
m
E 3090 3
14. (a) (i) Design a combinatorial circuit using ROM. The circuit accepts 3-bit
number and generates an output binary number equal to square of
input number. (8)
(ii) Repeat the above problem using PLA. (8)
Or
(b) (i) Compare all the IC logic families based on
(1) Power consumption
(2) Fan out
(3) Power dissipation
(4) Propagation delay
(5) Switching speed
(6) Noise margin. (8)
(ii) Describe the different types of memories. (8)
Or
(b) (i) Write an HDL behavioral description of JK flip flop using if-else
statement based on the value of present state. (8)
(ii) Draw the logic diagram for the following module. (8)
module seqcrt (A, B, C, Q, CLK) ;
input A, B, C, CLK ;
output Q ;
reg Q, E ;
always @ (Posedge CLK)
begin
E < = A & B ;
Q < = E/C ;
end
end module

Vous aimerez peut-être aussi