Question:
Binary Code?
Notherenow
2007-03-09 12:03:28 UTC
When I was in primary school a substitute teacher taught my class about binary code numbers. Though I can remember how to write numbers under 10 in binary code, I can't remember how to for numbers over 10 or how to add/subtract/multiply/divide binary code numbers. Is there anyone out there who has the link to a website that can teach me again?
Seven answers:
Mictlan_KISS
2007-03-09 12:07:30 UTC
Is this part of the Info you need:

http://www.theproblemsite.com/codes/binary.asp
2007-03-09 12:18:18 UTC
Position is everything"



16 8 4 2 1



0 0 0 0 0 = 0

0 0 0 0 1 = 1

0 0 0 1 0 = 2

0 0 0 1 1 = 3

0 0 1 0 0 = 4

0 0 1 0 1 = 5

0 0 1 1 0 = 6

0 0 1 1 1 = 7

0 1 0 0 0 = 8

0 1 0 0 1 = 9

0 1 0 1 0 = 10

0 1 0 1 1 = 11

0 1 1 0 0 = 12

ETC...
SmOKE
2007-03-09 12:11:06 UTC
The term binary code can mean several different things:



There are a variety of different methods of coding numbers or symbols into strings of, including fixed-length binary numbers, prefix codes such as Huffman code, and other arithmetic coding.

Made up of only zeros and ones, and used in computers to stand for letters and digits.

8-bit ISO 8859-1 uses 8 digits for one letter e.g. "R" is "01010010" and "b" is "01100010" this is called a byte. 7-bit ASCII uses 7 bits to represent 128 characters (0-128).







Binary can produce a number between 0 and 255 (often stated as 1-256 for numerical purposes). It is a string of 8 characters consisting of only 1s and 0s.







Decoding a Single Binary Sequence Into an Integer (0-255)







Binary can be read from right to left. If any number is 0, it is ignored. If the first number from the right is 1, you add 1 to the number. If the second number from the right is 1, you add 2. And if the third number from the right is 1, you add 4. This pattern continues, doubling the numbers added until the left-most digit (which equals 128) is reached.







1st digit from right = 1: add 1

2nd digit from right = 1: add 2

3rd digit from right = 1: add 4

4th digit from right = 1: add 8

5th digit from right = 1: add 16

6th digit from right = 1: add 32

7th digit from right = 1: add 64

8th digit from right = 1: add 128





00000001 = 1

00000010 = 2

00000011 = 3

00000100 = 4

00000101 = 5

00000110 = 6

00000111 = 7

00001000 = 8

etc.







Binary is also similar to hexadecimal in that it is a computer code that produces a value of 0-255, although hexadecimal uses 2 numbers with 16 digits 0-F (0123456789ABCDEF).







See also: Unicode
kovie
2016-10-31 10:54:31 UTC
Tekmom Buzzwords
scruffy
2007-03-09 12:06:24 UTC
Try wikipedia. Just guessing here but http://en.wikipedia.org/wiki/binary



have no idea about that link but I would guess it provides a link that explains it.
2007-03-09 12:10:54 UTC
A= 01000001, B = 01000010
gpav6
2007-03-09 12:09:11 UTC
yep i can first just copy and paste this following link and ur dun















http://www.tekmom.com/buzzwords/binaryalphabet.html


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...