No Description

BIN2OCT.data 499B

12345678910111213141516
  1. "1100100", "144"
  2. "10110010", "262"
  3. "111001010101", "#NUM!" // Too large
  4. "1001", 3, "011" // Leading places
  5. "1001", 4.75, "0011" // Leading places as a float
  6. "1001", -1, "#NUM!" // Leading places negative
  7. "1001", "ABC", "#VALUE!" // Leading places non-numeric
  8. "00000010", "2"
  9. "00000101", "5"
  10. "00001101", "15"
  11. "0", "0"
  12. "21", "#NUM!" // Invalid binary number
  13. TRUE, "#VALUE!" // Non string
  14. "1110010101", "7777777625" // 2's Complement
  15. "1111111111", "7777777777" // 2's Complement