Steps To Convert Your Name To binary Numbers And Other Words Or Sentences(Machine Language)





Hello friends,today you'll know how to convert your own name to machine language binary which is 0's and 1's.Machine language is the only natural dialect of the computer.

It is the lowest level of language. It also represents instruction and data in the way that is only interpretable by the central processing unit (CPU) of the computer, by using the method which is 0's and 1's (Binary digits).Machine language programs vary from computer to computer, that is machine dependent. Writing and debugging programs in machine language is a vary tedious task. Know let me show you something, we all know what an alphabet is, i mean A....Z and we all know they are in numbers 

A B C D E F G H I J K L M 
N O P Q R S T U V W X Y Z 

To know their number we say, A=1 I=9 Q=17 Y=25 B=2 J=10 R=18 Z=26 C=3 K=11 S=19 D=4 L=12 T=20 E=5 M=13 U=21 F=6 N=14 V=22 G=7 O=15 W=23 H=8 P=16 X=24 


Perfect we are through with our alphabetical numbering, the above sample is our source for this operation, lets go...

Before you can change your name to 0's and 1's first, you  divide/share each alphabetical number by two, we call it  (Base 2).Do not forget, there are no other letters accept the ones mentioned above, they are repeated letters...

Examples

I will convert letter F to binary digits
F= 5

       5
     ------ = 2 r 1
       2

       2
    ------- = 1 r 0
       2

       1
     ------ = 0 r 1
       2
   F = 101

You may like this: Insurance company mathematics

Wow that was a great job, can  you see how i converted  F to  binary digits this  means any time a user (Human being) typed in letter F on  the computer keyboard the central processing unit would automatically translate it to computer language, since computer don't understand F in nature.

Here is another one, this time we're going to puts this time by making 2 letters word IS.

I =9,S=19 for IS to write (is) in machine language we say,

      9
   ------- = 4 r 1
      2
    
      4
   ------- = 2 r 0
      2

       2
    ------- = 1 r 0
       2

       1
    ------ = 0 r 1
       2

   I = 1001

    Also

   S = 19

     19
   ------- = 9 r 1
      2

       9
    ------- = 4 r 1
       2
   
       4
    ------- = 2 r 0
       2
   
      2
    ------ = 1 r 0
      2
    
      1
    ----- = 0 r 1
      2

    S =10011
    therefore,
    IS =100110011


You may like this: Blue hosting

Can you see this concept how i converted IS to binary digits so when ever a user type in IS on the key machine only understand it as 100110011 but if you type in IS on the keyboard with a space i mean I S its going to display like this 1001 10011,do not forget what ever you instructs computer to do, it is what computer will do for you they are called 'sets of instructions' / 'commands'.

How lets look at 3 letters word WHO
 in (who) W = 23 , H = 8, O = 15 lets go...


     23
   ------- 11 r 1
      2
   
      11
   -------- = 5 r 1
       2

      5
   ------- = 2 r 1
      2

       2
    ------ = 1 r  0
       2

       1
    ------ 0 r 1
       2
   
   W =10111

   Also

   H = 8
   
      8
    ----- = 4 r 0
      2

      4
    ------ = 2 r 0
      2

      2
    ------ = 1 r 0
      2

      1
    ------ = 0 r 1
      2

   H = 1000

   Then,
   O = 15
   
     15
   ------ = 7 r 1
      2

     7
   ------ = 3 r 1
     2

      3
   ------ = 1 r 1
      2

      1
   ------- 0 r 1
      2
   0 = 1111
   WHO = 1011110001111


Wow that great, that means when ever i typed in (who) computer understand it this way 1011110001111..
This time, ill write my full name in binary number, my name is 'Ukeme Henry Umoh' we all give space when ever we write our complete name.


First Name
U=21, K=11, E=5, M=13, E=5. E is repeated
U= 21/2=10 r 1, 10/2=5 r 0, 5/2=2 r 1, 2/2=1 r 0,1/2=0 r 1
U=10101

 K= 11/2=5 r 1, 5/2=2 r 1, 2/2=1 r 0, 1/2=0 r 1
 K= 1101

 E= 5/2=2 r 1, 2/2=1 r 0, 1/2=0 r 1
 E= 101

 M= 13/2=6 r 1, 6/2=3 r 0, 3/2=1 r 1, 2/2=1 r 0, 1/2=0 r 1
 M= 11101

 E= 5/2=2 r 1, 2/2=1 r 0, 1/2=0 r 1
 E= 101
 Ukeme =10101110110111101101 , In machine language.

 Middle Name, H=8, E=5, N=14, R=18, Y=25
 H= 8/2=4 r 0, 4/2=2 r 0, 2/2=1 r 0, 1/2=0 r 1
 H= 1000

 E= 5/2=2 r 1, 2/2=1 r 0, 1/2=0 r 1
 E= 101

 N= 14/2=7 r 0, 7/2=3 r 1, 3/2=1 r 1, 1/2=0 r 1
 N= 1110

R= 18/2=9 r 0, 9/2=4 r 1, 4/2=2 r 0, 2/2=1 r 0, 1/2=0 r 1
R= 10010

Y= 25/2=12 r 1, 12/2=6 r 0, 6/2=3 r 0, 3/2=1 r 1,1/2=0 r 1
Y= 11001
Henry =1000101111011001, In machine language.

Last Name, 
Umoh U=21, M=13, O=15, H=8
U= 21/2=10 r 1, 10/2=5 r 0, 5/2=2 r 1, 2/2=1 r 0,1/2=0 r 1
U=10101

M= 13/2=6 r 1, 6/2=3 r 0, 3/2=1 r 1, 1/2=0 r 1
M= 1101

O= 15/2=7 r 1, 7/2=3 r 1, 3/2=1 r 1, 1/2=0 r 1
O= 1111

H= 8/2=4 r 0, 4/2=2 r 0, 2/2=1 r 0, 1/2=0 r 1
H= 1000
Umoh= 1011111011000

Ukeme Henry Umoh
10101110110111101101 1000101111011001 1011111011000 Now you know how to convert/change your full name to binary digits you can still used the same method to change a word to machine language.

Post a Comment

0 Comments