May somebody explain this in other words? http://wiki.answers.com/Q/Why_do_you_read_binary_digits_right_to_left
I know this is an akward question, but I really want to know the answer, it's just curiosity, I'm learning all that stuff of low level programming and learn binary system is one of the first steps to accomplish the objective.
The proper question is not, "Why is binary read right to left?" The question that should be asked is, "How do people usually read binary numbers?"
The answer at http://wiki.answers.com/Q/Why_do_you_read_binary_digits_right_to_left suffers because of the way the question was phrased. (The exact question there was, "Why do you read binary digits right to left?") The correct answer (which I think is what the wiki answer was trying to say) is that binary numbers are used in the same way as decimal numbers, except that (a) each digit position is valued only $2$ times the position to its right, not $10$ times, and (b) the only digits allowed are $0$ and $1$.
In other words, we normally read binary numbers left to right, just as we do with decimal numbers, not right to left.
On the other hand, commonly taught algorithms for adding or multiplying decimal numbers by hand are performed starting at the rightmost digit of each number. You can adapt those same algorithms to addition or multiplication of binary numbers.
There is a related question, which is, "In what order does a computer store the binary digits of a binary number?" The answer to that question depends on which computer is storing the number.