First name: Brina
First name Initial : B (ASCII code: 66)
Convert: 66 (Decimal) = 100 0010 (Binary)
How? By diving repeatedly by 2.
66 / 2 = 33 r 0 ---> 0 is the first digit (ones digit) of the binary
continue by getting the previous quotient and dividing by 2 until we reach 0.
33 / 2 = 16 r 1 ---> 1 is the second digit (tens digit)
16 / 2 = 8 r 0 ---> 0 is the third digit
8 / 2 = 4 r 0 ---> 0 is the 4th digit
4 / 2 = 2 r 0 ---> 0 is the 5th digit
2 / 2 = 1 r 0 ---> 0 is the 6th digit
1 / 2 = 0 r 1 ---> Now stop here since 1 is lesser than 2. Then ofcourse because the quotient is 0. The remainder 1 is our 7th digit.
Then join them together: 1 0 0 0 0 1 0