Sign = bit 32 = 0
Exponent = bits 24..31 = 10000101 = 133. Exponent is 133-127 = 6
Mantissa = bits 1..23 = 10110110101000000000000 = 5984256
is 1/2 + 1/8 + 1/6 + ...
resulting float value: 109.65625
Answer:
i dont think this is math it says computer and tech
Answer:
result 1 = false;
result 2 = true;
Explanation:
result 1 = (43 < -77 && 1! = 10)
43 < -77 = false
1 != 10 = true
for any false && true logical operator, it returns false
result 1 = false;
false = 90 < -77 || -1 < 43
90 < -77 = false
-1 < 43 = true
for any false || true logical operator, it returns true
result 2 = true;