ICT Questions and Answers
Question 1
A digital circuit takes four digits as an input, and produce 'X' as its output. If the decimal value represented by the four binary digit is a prime number. If it is prime output is 1 otherwise 0. Assume that all four binary digit represent positive decimal values.
i) Draw a truth table for the above problem.
ii) Write the Boolean expression in the sum of product form.
iii) Design a logic circuit for the Boolean expression, which is obtained above.
iv) Simplify the expression using Boolean algebra/ Karnaugh map.
Answer
i) Truth Table
A | B | C | D | X |
0 | 0 | 0 | 0 | 0 |
0 | 0 | 0 | 1 | 0 |
0 | 0 | 1 | 0 | 1 |
0 | 0 | 1 | 1 | 1 |
0 | 1 | 0 | 0 | 0 |
0 | 1 | 0 | 1 | 1 |
0 | 1 | 1 | 0 | 0 |
0 | 1 | 1 | 1 | 1 |
1 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 0 |
1 | 0 | 1 | 0 | 0 |
1 | 0 | 1 | 1 | 1 |
1 | 1 | 0 | 0 | 0 |
1 | 1 | 0 | 1 | 1 |
1 | 1 | 1 | 0 | 0 |
1 | 1 | 1 | 1 | 0 |
Question 2
Consider the logic circuit shown here to answer the below questions.
i) Write and simplify the Boolean expression for the above circuit using Boolean algebra . Show all the workings and algebraic rules used for the simplification.
ii) Construct the logic circuit using combination of only AND, OR and NOT gates for the simplified Boolean expression obtained above.
No comments:
Post a Comment