📜  门| GATE CS Mock 2018 |设置 2 |问题 29

📅  最后修改于: 2021-09-25 07:40:59             🧑  作者: Mango

浮点型变量的值使用单精度 32 位浮点格式 IEEE-754 标准表示,该标准使用 1 位符号、8 位偏置指数和 23 位尾数。浮点型变量 X 被赋予十进制值 -25.75。 X 的十六进制表示是
(一) 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

这个问题的测验