CBSE Class 11 Computer Science
Question 50 of 68
Data Representation and Boolean Logic — Question 21
Back to all questions(a) 100101111
Grouping in bits of 3:
| Binary Number | Equivalent Octal |
|---|---|
| 100 | 4 |
| 101 | 5 |
| 111 | 7 |
Therefore, (100101111)2 = (457)8
(b) 111011010
Grouping in bits of 3:
| Binary Number | Equivalent Octal |
|---|---|
| 111 | 7 |
| 011 | 3 |
| 010 | 2 |
Therefore, (111011010)2 = (732)8
(c) 1010011
Grouping in bits of 3:
| Binary Number | Equivalent Octal |
|---|---|
| 001 | 1 |
| 010 | 2 |
| 011 | 3 |
Therefore, (1010011)2 = (123)8
(d) 10011101
Grouping in bits of 3:
| Binary Number | Equivalent Octal |
|---|---|
| 010 | 2 |
| 011 | 3 |
| 101 | 5 |
Therefore, (10011101)2 = (235)8