CSARCH2 Formats to memorize
Jeremiah
Terms in this set (20)
1. Binary Rules to consider to do single/double precision
2. 1.f
3. base 2
4. e + 127, e + 1023
5. 0 is pos 1 is neg
s, e = 0, f = 0 Special Case for Single and Double Floating Point for ZERO
special case for single
s, e = 255, f = 0
Infinity
special case for single
s, e = 0, f !=0
denormalized
special case for single
s, e = all 1s, f = msb = 1
qNAN
special case for single
s, e = all 1s, f = msb = 0
sNAN
special case double
s, e = 0, f !=0
denormalized
s, e = 2047, f = 0 special case double infinity
special case double
s, e = all 1s, f = msb = 0
sNaN
special case double
s, e = all 1s, f = msb = 1
qNaN
32 how many bits are needed for single precision floating point
8 how many bits are needed for the exponent in single precision floating point
CSARCH2 Formats to memorize
1/2