Digital Systems tenth edition - Tocci - Chapter 2 - Solutions - 10 ed

2-1. Convert these binary numbers to decimal. (a)*10110 (d) 01101011 (g)*1111010111 (b) 10010101 (e)*11111111 (h) 11011111 (c)*100100001001 (f) 01101111


2-2. Convert the following decimal values to binary. (a)*37 (d) 1000 (g)*205 (b) 13 (e)*77 (h) 2133 (c)*189 (f) 390 (i)*511

2-3. What is the largest decimal value that can be represented by (a)* an eight-bit binary number? (b) A 16-bit number?


2-4. Convert each hex number to its decimal equivalent. (a)*743 (d) 2000 (g)*7FF (b) 36 (e)*165 (h) 1204 (c)*37FD (f) ABCD


2-5. Convert each of the following decimal numbers to hex. (a)*59 (d) 1024 (g)*65,536 (b) 372 (e)*771 (h) 255 (c)*919 (f) 2313


2-6. Convert each of the hex values from Problem 2-4 to binary.


2-7. Convert the binary numbers in Problem 2-1 to hex.


2-8. List the hex numbers in sequence from 19516 to 28016.


2-9. When a large decimal number is to be converted to binary, it is sometimes easier to convert it first to hex,and then from hex to binary.Try this procedure for 213310 and compare it with the procedure used in Problem 2-2(h).


2-10. How many hex digits are required to represent decimal numbers up to 20,000?


2-11. Convert these hex values to decimal. (a)*92 (d) ABCD (g)*2C0 (b) 1A6 (e)*000F (h) 7FF (c)*37FD (f) 55


2-12. Convert these decimal values to hex. (a)*75 (d) 24 (g)*25,619 (b) 314 (e)*7245 (h) 4095 (c)*2048 (f) 498



2-13. Take each four-bit binary number in the order they are written and write the equivalent hex digit without performing a calculation by hand or by calculator. (a) 1001 (e) 1111 (i) 1011 (m) 0001 (b) 1101 (f) 0010 (j) 1100 (n) 0101 (c) 1000 (g) 1010 (k)0011 (o) 0111 (d) 0000 (h) 1001 (l) 0100 (p) 0110


2-14. Take each hex digit and write its four-bit binary value without performing any calculations by hand or by calculator. (a) 6 (e) 4 (i) 9 (m) 0 (b) 7 (f) 3 (j) A (n) 8 (c) 5 (g) C (k)2 (o) D (d) 1 (h) B (l) F (p) 9


2-15.* Convert the binary numbers in Problem 2-1 to hexadecimal.


2-16.* Convert the hex values in Problem 2-11 to binary.


2-17.* List the hex numbers in sequence from 280 to 2A0.


2-18. How many hex digits are required to represent decimal numbers up to 1 million?


2-19. Encode these decimal numbers in BCD. (a)*47 (d) 6727 (g) *89,627 (b) 962 (e)*13 (h)1024 (c)*187 (f) 529


2-20. How many bits are required to represent the decimal numbers in the range from 0 to 999 using (a) straight binary code? (b) Using BCD code?


2-21. The following numbers are in BCD. Convert them to decimal. (a)*1001011101010010 (d) 0111011101110101 (b) 000110000100 (e)*010010010010 (c)*011010010101 (f) 010101010101

2-22.*(a) How many bits are contained in eight bytes? (b) What is the largest hex number that can be represented in four bytes? (c) What is the largest BCD-encoded decimal value that can be represented in three bytes?

2-23. (a) Refer to Table 2-4.What is the most significant nibble of the ASCII code for the letter X? (b) How many nibbles can be stored in a 16-bit word? (c) How many bytes does it take to make up a 24-bit word?


2-24. Represent the statement “ ” in ASCII code. Attach an oddparity bit.


2-25.*Attach an even-parity bit to each of the ASCII codes for Problem 2-24, and give the results in hex.


2-26. The following bytes (shown in hex) represent a person’s name as it would be stored in a computer’s memory.Each byte is a padded ASCII code. Determine the name of each person. (a)*42 45 4E 20 53 4D 49 54 48 (b) 4A 6F 65 20 47 72 65 65 6E


2-27. Convert the following decimal numbers to BCD code and then attach an odd parity bit. (a)*74 (c)*8884 (e)*165 (b) 38 (d) 275 (f) 9201


2-28.*In a certain digital system, the decimal numbers from 000 through 999 are represented in BCD code.An odd-parity bit is also included at the end of each code group. Examine each of the code groups below, and assume that each one has just been transferred from one location to another. Some of the groups contain errors. Assume that no more than two errors have occurred for each group.Determine which of the code groups have a single error and which of them definitely have a double error. (Hint: Remember that this is a BCD code.)

(a) 1001010110000
parity bit
(b) 0100011101100 (c) 0111110000011 (d) 1000011000101
 
 
2-29. Suppose that the receiver received the following data from the transmitter of Example 2-16:
0 1 0 0 1 0 0 0
1 1 0 0 0 1 0 1
1 1 0 0 1 1 0 0
1 1 0 0 1 0 0 0
1 1 0 0 1 1 0 0
What errors can the receiver determine in these received data?


2-30.*Perform each of the following conversions.For some of them,you may want to try several methods to see which one works best for you. For example, a binary-to-decimal conversion may be done directly, or it may be done as a binary-to-hex conversion followed by a hex-todecimal conversion. (a) 141710 _____ 2 (b) 25510 _____ 2 (c) 110100012 _____ 10 (d) 11101010001001112 _____ 10


2-31.*Represent the decimal value 37 in each of the following ways. (a) straight binary (b) BCD (c) hex (d) ASCII (i.e., treat each digit as a character)


2-32.*Fill in the blanks with the correct word or words. (a) Conversion from decimal to _____ requires repeated division by 16. (b) Conversion from decimal to binary requires repeated division by _____. (c) In the BCD code, each _____ is converted to its four-bit binary equivalent. (d) The _____ code has the characteristic that only one bit changes in going from one step to the next. (e) A transmitter attaches a _____ to a code group to allow the receiver to detect _____. (f) The _____ code is the most common alphanumeric code used in computer systems. (g) _____ is often used as a convenient way to represent large binary numbers. (h) A string of eight bits is called a _____.


2-33. Write the binary number that results when each of the following numbers is incremented by one. (a)*0111 (b) 010011 (c) 1011


2-34. Decrement each binary number. (a)*1110 (b) 101000 (c) 1110


2-35. Write the number that results when each of the following is incremented. (a)*777916 (c)*OFFF16 (e)*9FF16 (b) 999916 (d) 200016 (f) 100A16


2-36.*Repeat Problem 2-35 for the decrement operation.


2-37.*In a microcomputer, the addresses of memory locations are binary numbers that identify each memory circuit where a byte is stored.The number of bits that make up an address depends on how many memory locations there are.Since the number of bits can be very large,the addresses are often specified in hex instead of binary. (a) If a microcomputer uses a 20-bit address, how many different memory locations are there? (b) How many hex digits are needed to represent the address of a memory location? (c) What is the hex address of the 256th memory location? (Note:The first address is always 0.)


2-38. In an audio CD, the audio voltage signal is typically sampled about 44,000 times per second, and the value of each sample is recorded on the CD surface as a binary number. In other words, each recorded binary number represents a single voltage point on the audio signal waveform. (a) If the binary numbers are six bits in length, how many different voltage values can be represented by a single binary number? Repeat for eight bits and ten bits. (b) If ten-bit numbers are used,how many bits will be recorded on the CD in 1 second? (c) If a CD can typically store 5 billion bits, how many seconds of audio can be recorded when ten-bit numbers are used?


2-39.*A black-and-white digital camera lays a fine grid over an image and then measures and records a binary number representing the level of gray it sees in each cell of the grid. For example, if four-bit numbers are used, the value of black is set to 0000 and the value of white to 1111, and any level of gray is somewhere between 0000 and 1111. If six-bit numbers are used, black is 000000, white is 111111, and all grays are between the two. Suppose we wanted to distinguish among 254 different levels of gray within each cell of the grid. How many bits would we need to use to represent these levels?


2-40. A 3-Megapixel digital camera stores an eight-bit number for the brightness of each of the primary colors (red, green, blue) found in each picture element (pixel). If every bit is stored (no data compression), how many pictures can be stored on a 128-Megabyte memory card? (Note: In digital systems, Mega means 220.)