To Lecture Notes

ISP 121 -- 5/14/08

Read the Binary and Hex Tutorial for more details.

Questions

  1. Match the positional number system base on the right to the item on the left.

  2. Expand 327 in powers of ten. Recall that 7 is in the ones (100) place, 2 is in the tens (101) place and 3 is in the hundreds (103) place.
    Ans: 3 × 102 + 2 × 101 + 7 × 100

  3. Convert the following to decimal (base-10):

    Recall that the digit X represents 10 and the digit E represents 11 in the duodecimal (base-12) system. Ans:
    12013 = 1 × 33 + 2 × 32 + 0 × 31 + 1 × 30 = 27 + 18 + 0 + 1 = 46
    41315 = 4 × 53 + 1 × 52 + 3 × 51 + 1 × 50 = 500 + 25 + 15 + 1 = 541
    53EX12 = 5 × 123 + 3 × 122 + 11 × 121 + 10 × 120 = 8,640 + 432 + 132 + 10 = 9,214

 

Binary to Decimal

 

Decimal to Binary

 

Hex <--> Binary

 

ASCII Codes

 

Signed Binary Numbers

Activity A10