Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Represent the following 32-bit IEEE 754 floating point numbers as decimal numbers, using scientific notation: (spaces are shown for visual convenience only)
  2.  
  3. 0 1000 0010 011 0000 0000 0000 0000 0000
  4.  
  5. ANSWER: 1.1E1 (11)
  6.  
  7. 1 1000 0001 000 1000 0000 0000 0000 0000
  8.  
  9. ANSWER: 4.25E0 (4.25)
  10.  
  11.  
  12. What are the octal, hexadecimal, and decimal representations of the unsigned binary number 01100110?
  13.  
  14. 0110 0110 =
  15. DECIMAL: 102 (base 10)
  16. HEXADECIMAL: 0x66
  17. OCTAL: 145 (base 8)
  18.  
  19. Convert the following signed 8-bit binary number to a decimal number:
  20.  
  21. 11100101 = -27 (base 10)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement