School ICT Self Study

Binary Representation Logic

0

1.Why can’t computers use decimal directly instead of binary?

2.Convert 156 to octal and verify using binary.

3.Convert 255 to hexadecimal and explain each step.

4.Convert binary 11100 to decimal, then to hexadecimal.

5.Convert octal 75 to binary, then to decimal for verification.

Spread the love
Ruwan Suraweera Changed status to publish 1 day ago
0

Β 

1.

Answer: Computers rely on binary because their hardware uses two-state transistors (on/off), which align with 0 and 1, not the 10 states needed for decimal.
Description: Decimal requires complex multi-state circuits, while binary simplifies design and computation in digital systems.

2.

Answer: 156 in octal is 234. In binary: 10011100, grouped as 010 011 100 = 2 3 4.
Description: Divide 156 by 8: 19 remainder 4, 2 remainder 3, 0 remainder 2 = 234. Binary check confirms accuracy.

3.

Answer: 255 in hex is FF.
Description: 255 Γ· 16 = 15 remainder 15. 15 = F, so 15F = FF. Each digit represents a power of 16 (F Γ— 16ΒΉ + F Γ— 16⁰).

4.

Answer: Binary 11100 = 28 (decimal), 28 = 1C (hex).
Description: Decimal: (1 Γ— 2⁴) + (1 Γ— 2Β³) + (1 Γ— 2Β²) = 16 + 8 + 4 = 28. Hex: 28 Γ· 16 = 1 remainder 12 (C).

5.

Answer: Octal 75 = 111101 (binary), decimal 61.
Description: 7 = 111, 5 = 101, so 75 = 111101. Decimal: (1 Γ— 2⁡) + (1 Γ— 2⁴) + (1 Γ— 2Β³) + (1 Γ— 2Β²) + (0 Γ— 2ΒΉ) + (1 Γ— 2⁰) = 61.
Spread the love
Ruwan Suraweera Changed status to publish 2 days ago
Write your answer.