How does Binary language work?

Asked By 130 points N/A Posted on -
qa-featured

How does Binary language works? I mean, how does a system understand only 0s and 1s and produce meaning information. How are the user given input converted and is understood by the system? Is there anyone who can understand Binary language? Will computers understand English language in the near future? What things can be done to make it possible?

SHARE
Answered By 0 points N/A #193598

How does Binary language work?

qa-featured

Binary Language:

Binary number look like:

01001010

First we study this chart.

2 to the power of 0 = 1 (2^0)
2 to the power of 1 = 2 (2^1)
2 to the power of 2 = 4 (2^2) or (2*2)
2 to the power of 3 = 8 (2^3) or (2*2*2)
2 to the power of 4 = 16 (2^4) or (etc.)

Now we apply chart on this binary number.

128   64   32   16   8    4    2    1
————————————–
  0       1      0     0    1    0    1    0
 

Binary language is very difficult, lay man can’t understand this language but computer easily understand it.

If we write anything without binary number, computer first time convert this number into binary form and then process it.

Natural language processing is a field of computer science. Many computer scientist working of this language. May be in future computer understand the human language.

Related Questions