NT 1210-M1

NT 1210-M1


NT 1210-M1
Unit 1
3/17/2015

Lab 1.1 Reading Binary
1.1.1 2931= (2*10^3)+(9*10^2)+(3*10^1)+(1*10^0)
2000+900+30+1
1.1.2 110= (1*2^2)+(1*2^1)+(0*2^0)
1*4 + 1*2 + 0*1
4+2+0=6
1.1.3 11= (1*2^1)+(1*2^0)
1*2 + 1*0
2+1=3
1.1.4 10010= (1*2^4)+(0*2^3)+(0*2^2)+(1*2^1)+(0*2^0)
1*16 + 0*8 + 0*4 +1*2 + 0*1
16+0+0+2+0=18
1.1.5 11100010= (1*2^7)+(1*2^6)+(1*2^5)+(0*2^4)+(0*2^3)+(0*2^2)+(1*2^1)+(0*2^0)
1*128+1*64+1*32+1*0+1*0+1*0+1*2+1*0
128+64+32+0+0+0+2+0=226
1.1.6 (1*2^7)+(1*2^6)+(1*2^5)+(1*2^4)+(1*2^3)+(1*2^2)+(1*2^1)+(1*2^0)
1*128+0*64+0*32+1*16+1*8+1*4+0*2+0*1
10011100=0128+16+8+4=156
1.1.7 (1*2^7)+(1*2^6)+(1*2^5)+(1*2^4)+(1*2^3)+(1*2^2)+(1*2^1)+(1*2^0)
1*128+1*64+1*32+1*16+1*8+1*4+1*2+1*1
11111111= 128+64+32+16+8+4+2+1=255
1.1.8 (1*2^7)+(1*2^6)+(1*2^5)+(1*2^4)+(1*2^3)+(1*2^2)+(1*2^1)+(1*2^0)
1*128+1*64+0*32+0*16+1*8+0*4+0*2+0*1
11001000= 128+64+8=200
1.1.9 1001=9
1.1.10 10111001=185
1.1.11 101111=47
1.1.12 10000001=129

Lab 1.2 Binary Math and logic
1.2.1 110+1001=1111
1.2.2 110+110=1011
1.2.3 111+111=1110
1.2.4 100 or 011=0111
1.2.5 111 and 100= 1111
1.2.6 1001 not 0110
1.2.7 1010+10=01100
1.2.8 1100 and 1111=0011 The string of one is always one.
1.2.9 1100 or 1111=0011
1.2 Review
1. 10010000+1101110 is 11111110
Value 1 10010000
Value 2 1101110
Results 11111110
2. 11001100 and 11111100 is 11001100
Value 1 11001100
Value 2 11111100
Results 11001100
3. 11001100 or...

Similar Essays