date: 2023-11-03
title: CO-Assignment-1
status: DONE
author:
- AllenYGY
tags:
- CO
- Assignment
created: 2023-11-03T00:59
updated: 2024-04-08T13:36
publish: True
Assignment-1
Define what a Turing machine is.
What is a UTM?
Explain the fetch-decode-execute cycle of the von Neumann Architecture.
x434F4D50 | x55544552 | |
---|---|---|
unsigned binary | 0100 0011 0100 1111 0100 1101 0101 0000 | 0101 0101 0101 0100 0100 0101 0101 0010 |
1's complement | 0100 0011 0100 1111 0100 1101 0101 0000 | 0101 0101 0101 0100 0100 0101 0101 0010 |
2's complement | 0100 0011 0100 1111 0100 1101 0101 0000 | 0101 0101 0101 0100 0100 0101 0101 0010 |
207.302 | ||
COMP | UTER |
{
"name": "Binary Increment",
"max_state": 25,
"symbols": "xyzabc01$@",
"tape": "100",
"position": 2,
"rules": [
[ 0, "#", "1", 1, "R" ],
[ 0, "0", "1", 1, "R" ],
[ 0, "1", "0", 0, "L" ],
[ 1, "#", "#", 0, "L" ],
[ 1, "0", "0", 1, "R" ],
[ 1, "1", "1", 1, "R" ]
]
}
Show that
a. Write the Boolean expression in sum-of-products form.
b. Write the Boolean expression in product-of-sums form.
c. Simplify the sum-of-products form using Boolean identities;
d. Draw the logical circuit diagram for the simplified Boolean expression;
1 | 1 | 0 | 0 | |
0 | 0 | 1 | 1 |