You are on page 1of 5

Register Number : 2141121

Name : Kunal N Jain


Class : 1 BCA B
Date/Time : 30/11/21
Question1 : Examine the working of 5-Bit asynchronous MOD N UP counter with its block

diagram and truth table. Find N value using below mentioned information.

Consider last two digits of your Register number as A.

If A<=25 then N=A+5

If (A>=26) and (A<=50) then N=A-20

If (A>=51) and (A<=67) then N=A-45

Screenshot of Simulated Circuits for Question 1:


Truth Table 1

CLK Q4 Q3 Q2 Q1 Q0
0 0 0 0 0 0
1 0 0 0 0 1
2 0 0 0 1 0
3 0 0 0 1 1
4 0 0 1 0 0
5 0 0 1 0 1
6 0 0 1 1 0
7 0 0 1 1 1
8 0 1 0 0 0
9 0 1 0 0 1
10 0 1 0 1 0
11 0 1 0 1 1
12 0 1 1 0 0
13 0 1 1 0 1
14 0 1 1 1 0
15 0 1 1 1 1
16 1 0 0 0 0
17 1 0 0 0 1
18 1 0 0 1 0
19 1 0 0 1 1
20 1 0 1 0 0
21 1 0 1 0 1
22 1 0 1 1 0
23 1 0 1 1 1
24 1 1 0 0 0
25 1 1 0 0 1
Question2 : Examine the working of a 3-bit PISO Register with its block diagram and truth table.

Screenshot of Simulated Circuits for Question 2:

Truth Table 2

For Sample Input , 111

CLK FF0 FF1 FF2


0 0 0 0
1 1 1 1
2 0 1 1
3 0 0 1
Question3 : Binary to Gray using only AND, OR,NOT gates

Truth Table3

B0 B1 B2 B3 G0 G1 G2 G3
0 0 0 0 0 0 0 0
0 0 0 1 0 0 0 1
0 0 1 0 0 0 1 1
0 0 1 1 0 0 1 0
0 1 0 0 0 1 1 0
0 1 0 1 0 1 1 1
0 1 1 0 0 1 0 1
0 1 1 1 0 1 0 0
1 0 0 0 1 1 0 0
1 0 0 1 1 1 0 1
1 0 1 0 1 1 1 1
1 0 1 1 1 1 1 0
1 1 0 0 1 0 1 0
1 1 0 1 1 0 1 1
1 1 1 0 1 0 0 1
1 1 1 1 1 0 0 0

Screenshot of Simulated Circuits for Question3:


Result:

1. D Flip Flop Block diagram is verified with the truth table


2. Half Subtractor NOR Circuit is verified with the truth table
3. Binary to Gray basic gates circuit is verified with the truth table

You might also like