NT1210
Lab 1.1
Lab 1.1: Reading Binary
Exercise 1.1.1
Create a mapping similar to Figure 1-1 for the decimal number 2931 using either paper and pencil or a Word document.
Exercise 1.1.2
Create a mapping similar to Figure 1-2 for the binary number 1102 using either paper and pencil or a Word document.
1102=7
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
1
0
Exercise 1.1.3
Create a mapping similar to Figure 1-2 for the binary number 112 using either paper and pencil or a Word document.
112=3
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
1
Exercise 1.1.4
Create an expanded mapping similar to Figure 1-3 for the binary number 100102 using either paper and pencil or a Word document.
100102=18
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
0
0
1
0
Exercise 1.1.5
Create an expanded mapping similar to Figure 1-3 for the binary number 111000102 using either paper and pencil or a Word document.
111000102=226
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
1
1
0
0
0
1
0
Exercise 1.1.6
Using the example in Figure 1-5 and the steps that followed, create a binary conversion for the decimal value 156.
156=10011100
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
0
0
1
1
1
0
0
Exercise 1.1.7
Using the example in Figure 1-5 and the steps that followed, create a binary conversion for the decimal value 255.
255=11111111
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
1
1
1
1
1
1
1
Exercise 1.1.8
Using the example in Figure 1-5 and the steps that followed, create a binary conversion for the decimal value 200.
200=11001000
(128) 27
(64) 26
(32) 25
(16) 24
(8) 23
(4) 22
(2) 21
(1) 20
1
1
0
0
1
0
0
0
Exercise 1.1.9
Using the binary converter document (explained in the Lab Manual just before Lab 1.1.9), create a decimal conversion for the binary value 10012.
10012=9
(128)