A base-32 number system that utilizes all the letters of the alphabet is used as a code to send message in binary form. In this code, the digit A has the decimal value 0, B has value 1, C has value 2, etc., upto Z, which has the decimal value 25. The remaining six digits in the code are represented by special symbols and punctuation marks. Decode the following message by converting the binary numbers to alphabetic characters.
0011001110 001010111010001 0100010011
First of all we have to convert the binary number into decimal form
(0011001110001010111010001)2 = (6755793)10 and
(0100010011)2 = (275)10
Now, according to question we have to convert this decimal code to alphabetic message
Now , from above table
(6755793)10 = GHFFHJD
(275)10 = CHF
Comments
Leave a comment