📜  门| GATE CS Mock 2018年|套装2 |问题29

📅  最后修改于: 2021-06-29 05:59:16             🧑  作者: Mango

浮点型变量的值使用单精度32位浮点格式IEEE-754标准表示,该标准使用1位符号,8位偏指数和23位尾数。浮点类型变量X的十进制值为-25.75。 X的十六进制表示形式为
(A) 61CD0000
(B) C1640000
(C) C1CD0000
(D) C1CE0000答案: (D)
解释:

Since number is negative S bit will be 1
Convert -25.75 into binary 11001.11
Normalize it : 1.100111 X 2 ^ 4
Biased Exponent (Add 127) : 4 + 127 = 131 (In binary 10000011)
Mantissa : 100111.....0 (Total 23 bits)

Num represented in IEEE 754 single precision format :

1 10000011 10011100000000000000000

In Hex (Group of Four bits) -

1100 0001 1100 1110 0000 0000 0000 0000

Num becomes : C1CE0000

这个问题的测验