Octal to Binary Number System
Octal number has base 8 from digit 0 – 7 written as (324)8
Binary Decimal
- 000 0
- 001 1
- 010 2
- 011 3
- 100 4
- 101 5
- 110 6
- 111 7
Convert Octal to Binary
- (116)8
——- ( 001 001 110 ) 2
SO BINARY number for octal 116 is 1001110 just by putting 3 bit value for each digit in octal. - (574.321)8
——- ( 101 111 100.011 010 001 ) 2
SO BINARY number for octal 574.321 is101 111 100.011 010 001 just by putting 3 bit value for each digit in octal.
Convert Octal to Decimal
- (116)8 = 1×82 + 1×81 +6×80 = 64+8+6 = (78)10
Convert Decimal to octal
- (70)10
= 8 | 70 | 6
8 | 8 | 0
1 there for the octal number of 70 base 10 is 106 base 8