Given the 21-bit even-parity Hamming code: 0 1010 0111 0011 0000
0101
and assuming there is one incorrect bit.
a. Which bit is incorrect?
My educated guess for what the incorrect bit maybe has me
thinking it is the '1' bit at the end of the '0111' byte, but I
have no full proof as to why it is that specific bit. Am I in the
right area to think that?
b. After the error is corrected, what decimal number...
Design a regular expression to filter out those numbers that are
stored in the standard format “+00-0-0000-0000”.
Examples of valid results are:
+61-3-9214-4980 and +61-3-9285-7706
1) What are the hexadecimal, and octal equivalents for the
unsigned binary value 0111 0000 1101? (note the spaces in the
binary are for readability (like a comma in a decimal value; there
is only a single 12 bit binary value)
PLEASE EXPLAIN IT IN DETAIL
Develop a python program to convert two decimal numbers (A and
B) to binary numbers. You should generate B complement signal (flip
all the bits of Input B,
Design a system which can add two 2-digit binary numbers (no
carry in). Use a truth table approach and use karnaugh-map
Write a Boolean equation for each output and draw circuit.
We want to build an adder to simultaneously add three
multi-digit binary numbers. Design a single bit of that adder. It
has three inputs for that digit, x, y, and z, plus two carry
inputs, u and v (since you may have a carry of 0, 1, or 2). There
are three outputs, a sum, s, and two carries, f, and g. Show a
truth table and find the minimum sum of products expressions for
the three outputs.
I need...