Question

Represent the following in computer memory - Comp131 (use even parity)

Represent the following in computer memory

- Comp131 (use even parity)

Homework Answers

Answer #1

Answer

Step 1

Convert

"Comp131" to ASCII

C

o

m

p

1

3

1

43

6F

6D

70

31

33

31

01000011

01101111

01101101

01110000

00110001

00110011

00110001

Step 2

Comp131 ro converted to

01000011011011110110110101110000001100010011001100110001

Step 3

Now count number of 1 bit

01000011011011110110110101110000001100010011001100110001

totally 27 1bits are there

so that is in odd parity

Step 4

Now convert to even parity by adding 1bit

1 01000011011011110110110101110000001100010011001100110001

Step 5

Final Result

101000011011011110110110101110000001100010011001100110001

---

all the best

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Course: Computer Architecture Theme: Internal Memory What is parity bit? What is Hamming code? Give examples.
Course: Computer Architecture Theme: Internal Memory What is parity bit? What is Hamming code? Give examples.
Show the bits that represent the letters ‘1HpQ’ in 8-bit ASCII, using even parity.
Show the bits that represent the letters ‘1HpQ’ in 8-bit ASCII, using even parity.
Design an even parity detection circuit. A parity bit is an error checking mechanism. Your circuit...
Design an even parity detection circuit. A parity bit is an error checking mechanism. Your circuit will count the number of 1’s in a stream of bits. If the number of 1’s is even, the circuit turns on an output called Y. Assume a single bit at each cycle – call the input X. Do not use an accumulator or counter. Design the even parity detection circuit using J-K flip-flops. Your answer must include: a. The state diagram. b. The...
If even parity is selected and the data to be sent is 110001001, which parity bit...
If even parity is selected and the data to be sent is 110001001, which parity bit should be included at the end? Need it typed please.
How to convert a decimal value to 7-bit ASCII code and ASCII with even parity? Please...
How to convert a decimal value to 7-bit ASCII code and ASCII with even parity? Please use 1234 as an example.
A computer has a cache, main memory, and a disk used for virtual memory. If a...
A computer has a cache, main memory, and a disk used for virtual memory. If a word is in the cache, 30 ns are required to access it. If it is in main memory, but not in cache, 50 ns are needed to load it into the cache. And then the reference is started again. If the word is not in main memory, 15 milliseconds (1 millisecond = 106 ns) are required to fetch it from disk, followed by 50...
Much like a computer, the human brain may retain traces of information even after being deleted....
Much like a computer, the human brain may retain traces of information even after being deleted. These memory traces are physico-chemical manifestations of representations (memories) in the brain. While their existence remains disputed, how might the existence of memory traces bear on developing new procedural and declarative memories? Why is this significant for understanding human cognition?
4) Suppose the memory of a computer is as follows: Address 0x100 Address 0x101 Address 0x102...
4) Suppose the memory of a computer is as follows: Address 0x100 Address 0x101 Address 0x102 Address 0x103 12 34 56 78 What integer value is this on a big-endian computer? 5) Use a stack to evaluate the postfix expression: 6 3 * 5 3 - /
Computers “A” wants to transmit 8 bits of data to computer “B” using 8 wires. To...
Computers “A” wants to transmit 8 bits of data to computer “B” using 8 wires. To be able to detect errors, we should use: a. 1 odd parity generator and 1 even parity checker, withoug adding any more wires. b. 1 odd parity generator and 1 odd parity checker, without adding any more wires. c. 1 odd parity generator and 1 even parity checker using 1 extra wire. d. 8 odd parity generators and 8 odd parity checkers using 8...
//Calculate the even parity for letters, (A, Z, D, a). #include <iostream> #include <bitset> using namespace...
//Calculate the even parity for letters, (A, Z, D, a). #include <iostream> #include <bitset> using namespace std; int main() { char c; int bitCounts, pBit;; while (cin>>c){ //ctrl-Z to stop bitset<8> bs(c); cout<<bs<<endl; bitCounts = bs.count(); pBit = bitCounts % 2? 1: 0; cout<<"Even Parity bit: "<<pBit<<endl; } }