To convert a binary number to an octal number, you need to know how an octal number is represented in binary. It is like this: 0 = 000 4 = 100 1 = 001 5 = 101 2 = 010 6 = 110 3 = 011 7 = 111 As you...
use http://www.translatorscafe.com/cafe/units-converter/numbers/calculator/octal-to-binary/ source(s): easiest way to hack a website http://www.hacksonly.com/ Or, you can split the number in sets of...
First convert 37 in to decimal.
(3*8^1)+(7*8^0)=31.
Then convert it to binary.
2|31|
2|15---1
2 |7-----1
2|3------1
2|1-----1
so answer is in binary =(11111)
Or, by digits: 3->011,...