Sie sind auf Seite 1von 7

Chapter 1 Lesson 3 Evaluation (Binary Numbers)

Edwin Bryan M. Javier BSIT 1


1. Convert the decimal number 76 to binary.

76 / 2 = 38 - 0 remainder

38 / 2 = 19 - 0 remainder

19 / 2 = 9 -1 remainder

9 / 2 = 4 -1 remainder
=1001100

4 / 2 = 2 -0 remainder

2 / 2 = 1 - 0 remainder

1 / 2 = 0 - 1 remainder

2. Convert the decimal number 193 to binary.

193/2 = 96, remainder is 1

96/2 = 48, remainder is 0

48/2 = 24, remainder is 0

24/2 = 12, remainder is 0 =11000001

12/2 = 6, remainder is 0

6/2 = 3, remainder is 0

3/2 = 1, remainder is 1

1/2 = 0, remainder is 1

3. Convert the decimal number 18.25 to binary

18/2 = 0 remainder 0.25x2 = 0.5 = 1

9/2 = 1 0.5x2 = 1 = 0
4/2= 0 remainder 10010+0.01= 11010.01

2/2 = 0 remainder

½=1

4. Convert the decimal number 10.375 to binary.

10/2 = 0 0.375x2 = 0.75 = 1

5/2= 1 0.75x2 = 1.5 = 1

2/2= 0 1.5x2 = 3 = 0

½=1 1101+0.011= 1010.011

5. Convert the decimal number 55.6875 to binary.

55/2 = 1 0.6875x2 = 0

27/2 = 1 1.375x 2 = 1

13/2 = 1 2.75x2 = 0

6/2 =0 2/5= 1

3/2 =1 0=1

2/1 =1 110111+0.1011 = 110111.1011

6. What is 1011 in decimal?


1 x 2^3 + 0 x 2^2 + 1 x 2^1 + 1 x 2^0

8 + 0 + 2 + 1 = 11

1011 = 11

7. What is 1110011 in decimal?


1x2^6 + 1x2^5 + 1x2^4 + 0x2^3 + 0x2^2 + 1x2^1 + 1x2^0

1x64 + 1x32 + 1x16 + 0x8 + 0x4 + 1x2 + 1x1 = 64 + 32 + 16 + 0 + 0 + 2 + 1

64 + 32 + 16 + 0 + 0 + 2 + 1 = 115

8. What is 11.1 in decimal?

1∙2^1+1∙2^0+1∙2^-1

2+1+0.5

= 3.5

9. What is 100.011 in decimal?

1∙2^2+0∙2^1+0∙2^0+0∙2^-1+1∙2^-2+1∙2^-3

4+0+0+0+0.25+0.125

= 4.375

10. What is 1010011.00112 in decimal?

1∙2^6+0∙2^5+1∙2^4+0∙2^3+0∙2^2+1∙2^1+1∙2^0+0∙2^-1+0∙2^-2+1∙2^-3+1∙2^-4

64+0+16+0+0+2+1+0+0+0.125+0.0625

= 83.1875

Chapter 1 Lesson 4 Evaluation (Octal Number System)


Edwin Bryan M. Javier BSIT 1

A. Convert the following decimal numbers to octal number system (2points

Each)
1. 11 = 11/8= 1.375 =remainder 3

1/ 8 = 0= remainder 1

= 13

2. 134 = 134/ 8= 16. 75 remainder 6

16/8= 2 remainder 0

2/8 = 0.25 remainder 2

= 206

3. 28= 28/8 = 3.5 remainder 4

3/8= 0.375 remainder 3

.5x8= 4
8x0.755 = 3
= 34

4. 765 = 765/8 = 95.625 remainder 5


95/ 8 = 11.875 remainder 7
1375
11/ 8 = 1.375 remainder 3

1/8 = 0.125 remainder 1

5. 1689 = 1689/8 = 211.125 remainder 1


211/8 = 26.375 remainder 3
3231
26/ 8 = 3.25 remainder 2

3/8 = 0.375 remainder 3

6. 2387 = 2387/8 = 298.375 remainder 3

298/8 = 37.25 remainder 2 4523


37/8 = 4.625 remainder 5

4/ 8 = 0.5 remainder 4

B. Convert the following octal numbers to decimal numbers (2points each)

1. 70= 7x 8^1+ 0 x8^0 = 56

2. 42 = 4x8^1+ 2x8^0 = 34

3. 165= 1x8^ 2 + 6x8^ 1 + 5x2^ 0 = 117

4. 436 = 4x8^2 + 3x8^1 + 6 x 8^0 = 286

5. 3216 = 3x8^3+ 2x8^ 2+ 1x8^1+ 6x 8^ 0 = 1678

6. 2543= 2x 8^3+ 5x8^ 2+4x8^ 1+ 3x8^0 = 1379

C. Convert the following octal numbers to binary numbers

1. 47= 10011

2. 65 = 110101

3. 132 =1011010

4. 547 = 101100111
5. 23.61= 10011.110001

6. 44.12= 100100.00101

D. Convert the following binary numbers to octal numbers.

1. 111 = 7

2. 101 = 5

3. 111.101 =7.5

4. 101101 = 55

5. 111100111= 747

6. 101000111=507

Chapter 1 Lesson 5 Evaluation (Hexadecimals)

Edwin Bryan M. Javier BSIT 1


Convert the following decimal numbers into Hexadecimal numbers. Show your
complete solution.
1. 42 = 42/16 = 2.625 remainder 10

2/16 = 0.125 remainder 2

= 2A

2. 338= 338/16 =21.125 remainder 2

21/ 26 = 1.3125 remainder 5 152


1/16 = 0. 0625 remainder 1

3. 21= 21/ 16 = 1.3125 remainder 5


15
1/ 16 = 0.0625 remainder 1

Convert the following hexadecimal numbers into decimal numbers. Show your
complete solution.

1. 9B5 = 9x16^2+ 11x16^2+5x16^0 =2485

2. F1C = 15x16^2+ 1x 16^ 1+ 12x16^0 = 3868

3. E8 = 14x16^1 + 8x16^ 0 = 232

Convert the following hexadecimal numbers into binary numbers. Show your
complete solution.

1. 3BD6 = 11101111010110

2. 4F.9A= 1001111.1001101

3. E7 =11100111

Convert the following BINARY numbers into HEXADECIMAL numbers. Show your
complete solution.

1. 1111010 = 7A

2. 101011111011= AFB

3. 100000= 20

Das könnte Ihnen auch gefallen