go to previous page   go to home page   go to next page hear noise highlighting

How many possible mantissas can be represented in single precision?

Answer:

A mantissa has 23 bits so there are 223 patterns possible.


IEEE 754 Floating Point

IEEE 754 format

An IEEE 754 single-precision floating point value is 32 bits long. The bits are divided into fixed-sized fields as above.

Bits 0 through 22 are for the mantissa; bits 23 through 30 are for the exponent; and bit 31 is the sign bit.

The mantissa and exponent fields work like the similar parts in scientific notation (details follow). The sign bit gives the sign of the entire expression: a 0 bit means positive and a 1 bit means negative.


QUESTION 11:

You have seen the MIPS instruction bltz which branches if the 32-bit integer in a register is less than zero (negative). It does this by looking at bit 31 of the two's complement integer and branching if it is set.

Does this instruction work with single precision values?


go to previous page   go to home page   go to next page