A question about the principle of computer composition A question about the principle of Computer Organization Suppose the machine word length is 16 bits. For fixed-point representation, the numerical value is 15 bits and the sign bit is 1 bit; for floating-point representation, the rank code is 6 bits and the mantissa is 10 bits, each including 1 sign bit; the bottom of the rank code is 2 1. What are the maximum integer and the minimum negative number when representing the fixed-point original code integer? 2. What are the maximum integer and the minimum negative number in the decimal representation of fixed-point original code? It's better to write in detail, the teacher let me go up next class, but I can't, Wuwu~ I've given you all my marks. I must study hard in the future~

A question about the principle of computer composition A question about the principle of Computer Organization Suppose the machine word length is 16 bits. For fixed-point representation, the numerical value is 15 bits and the sign bit is 1 bit; for floating-point representation, the rank code is 6 bits and the mantissa is 10 bits, each including 1 sign bit; the bottom of the rank code is 2 1. What are the maximum integer and the minimum negative number when representing the fixed-point original code integer? 2. What are the maximum integer and the minimum negative number in the decimal representation of fixed-point original code? It's better to write in detail, the teacher let me go up next class, but I can't, Wuwu~ I've given you all my marks. I must study hard in the future~

1. The maximum integer is 32767 and the minimum integer is - 32768
2. The maximum positive number is 0.1111 * 2 ^ 6
The minimum integer is 0.1000000000 * 2 ^ (- 6)
The maximum negative number is 1.0 million * 2 ^ (- 6)
The minimum negative number is 1.1111 * 2 ^ 6