Computer Science
Convert the following binary numbers to octal
(a) 111010
(b) 110110101
(c) 1101100001
Number System
49 Likes
Answer
(a) 111010
Grouping in bits of 3:
| Binary Number | Equivalent Octal | 
|---|---|
| 010 | 2 | 
| 111 | 7 | 
Therefore, (111010)2 = (72)8
(b) 110110101
Grouping in bits of 3:
| Binary Number | Equivalent Octal | 
|---|---|
| 101 | 5 | 
| 110 | 6 | 
| 110 | 6 | 
Therefore, (110110101)2 = (665)8
(c) 1101100001
Grouping in bits of 3:
| Binary Number | Equivalent Octal | 
|---|---|
| 001 | 1 | 
| 100 | 4 | 
| 101 | 5 | 
| 001 | 1 | 
Therefore, (1101100001)2 = (1541)8
Answered By
4 Likes
Related Questions
- Convert the following octal numbers to binary: - (a) 123 - (b) 3527 - (c) 705 
- Convert the following octal numbers to binary: - (a) 7642 - (b) 7015 - (c) 3576 - (d) 705 
- Convert the following binary numbers to octal - (a) 11001 - (b) 10101100 - (c) 111010111 
- Add the following binary numbers: - (i) 10110111 and 1100101 - (ii) 110101 and 101111 - (iii) 110111.110 and 11011101.010 - (iv) 1110.110 and 11010.011