2022-11-04 18:40:12 +01:00
### How many bits are needed to represent 1024 different bit patterns?
2022-11-04 18:39:15 +01:00
10.0
2022-11-04 18:40:12 +01:00
### How many errors in a single code pattern could be corrected when using an error-correcting code in which each code pattern is a Hamming distance of at least seven from any other code pattern?
2022-11-04 18:39:15 +01:00
3, Three
2022-11-04 18:40:12 +01:00
### A computer's main memory consists of numerous memory cells, each of which contains **(eight, 8)** Each memory cell is identified by a numeric value called the cell's**(memory address, address)**.
2022-11-04 18:39:15 +01:00
2022-11-04 18:40:12 +01:00
### If the patterns 101.11 and 1.011 represent values in binary notation, what is the binary representation of their sum?
2022-11-05 13:20:38 +01:00
111.001
2022-11-04 18:39:15 +01:00
2022-11-04 18:40:12 +01:00
### In which of the following addition problems (using two's complement notation) does an overflow error occur?
2022-11-04 18:39:15 +01:00
0100 + 0100
2022-11-04 18:40:12 +01:00
### Represent the bit pattern 1011010010011111 in hexadecimal notation
2022-11-04 18:39:15 +01:00
B49F
2022-11-04 18:40:12 +01:00
### The following is an error-correcting code in which any two patterns differ by a Hamming distance of at least three. Decode each of the following patterns:
2022-11-04 18:39:15 +01:00
| Symbol | Representation |
|--------|----------------|
| A | 000000 |
| B | 001111 |
| C | 010011 |
| D | 011100 |
| E | 100110 |
| F | 101001 |
| G | 110101 |
| H | 111010 |
010011 - C
101010 - H
011000 - D
101101 - F
2022-11-07 14:28:00 +01:00
### What is the smallest negative integer that can be represented in a two's complement system in which each value is represented by eight bits?
2022-11-04 18:39:15 +01:00
10000000, -128 (either is correct)
2022-11-04 18:40:12 +01:00
### Which of the following data storage systems provides the most efficient random access to individual data items?
2022-11-04 18:39:15 +01:00
Main memory
2022-11-04 18:40:12 +01:00
### Which of the following is the binary representation of 4 5/8?
2022-11-04 18:39:15 +01:00
100.101
2022-11-04 18:40:12 +01:00
### Which of the following representations in two's complement notation represents the largest value?
2022-11-04 18:39:15 +01:00
00000010
2022-11-04 18:40:12 +01:00
### A7DF is the hexadecimal representation for what bit pattern? Put a single space between each group of 4 bits, for ease of reading
2022-11-04 18:39:15 +01:00
1010 0111 1101 1111
2022-11-04 18:40:12 +01:00
### Which of the following best describes the NAND operation?
2022-11-04 18:39:15 +01:00
An AND followed by a NOT
2022-11-04 18:40:12 +01:00
### What is the result of the following subtraction problem (using two's compliment notation)? 00001111 - 10101010
2022-11-04 18:39:15 +01:00
01100101