English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

6 answers

Binary is the number system of computers since computers can electronically handle a 1 or a 0 (on or off electric charge).

By making a series of numbers of 1s and 0s allows you count in binary

0
1
10
11
100
101
110
111
1000
1001
etc.

It is as if you count from 1 to infinity by using only the 0 or 1 digit.

These binary numbers (codes) have equivalent numbers in other number systems, for instance, decimal.

0 = 0
1 = 1
10=2
11=3
100=4
101=5
etc.
By converting these binary codes into decimal "codes": we can use a computer for number operations
------------------
We can also use sequences of binary codes to represent letter characters. One way to do this is called the ASCII character set (AMerican Standard Character Interface interchange ...or something like that). In this, a set of 8 bits (0 or 1) represents all characters. UNICODE is a different set. You get the idea.

2007-01-31 15:01:41 · answer #1 · answered by Anonymous · 0 0

Binary numbers means base 2 (as opposed to base 10, which we also call decimal).

In base 10 the number 111 means:

(1 x 10^2) +(1 x 10^1) + (1 x 10^0) =

100 + 10 + 1 =

111

In base 2 the number 111 means:

(1 x 2^2) +(1 x 2^1) + (1 x 2^0) =

4 + 2 + 1 =

7

Binary code simply means assigning different meanings to different binary numbers. For example we could make 0001 be A, 0002 be B, 0003 be C, etc.

Two very widely used binary codes are ASCII (used in Microsoft files and Unix files) and EBCDI (used on mainframes).

111

2007-01-31 15:02:43 · answer #2 · answered by Anonymous · 0 0

In the decimal system, each position in a number has 10 possible characters (0-9). The actual value being represented is that number multiplied by 10 raised to the power of that position - 1. This is called a base 10 number system. For example, xyz in decimal is really x * 10^2 + y * 10^1 + z *10^0. 543 in decimal = 5 * 10^2 + 4 * 10^1 + 3 * 10^0.

Binary is another way of representing numbers. Each position has two possible characters to choose from (0 or 1). Therefore, each value is that number multiplied by 2 raised to power of that position - 1. This is called a base 2 number system. For example, xyz in binary is really x * 2^2 + y * 2^1 + z * 2^0. 101 in binary = 1 * 2^2 + 0 * 2^1 + 1 * 2^0 = 5.

Computer hardware represents binary with either an electrical charge or no charge, and builds memory and processors from logical gates that operate on binary.

2007-01-31 15:02:26 · answer #3 · answered by Michael 5 · 0 0

Binary code is 0's (zeros) and 1's (ones) These represent an on or off condition (like a light switch). This is all a computer really understands.

2007-01-31 14:56:36 · answer #4 · answered by Gene M 6 · 0 0

binary code are like thise one of my friens said me visit the site
http://www.freewebs.com/ashweria/ads.html

2007-01-31 15:02:24 · answer #5 · answered by tradersrock 1 · 0 0

01101111 01101110 01100101 01110011 00100000
01100001 01101110 01100100 00100000 01111010
01100101 01110010 01101111 01110011 00101110

2007-01-31 14:56:17 · answer #6 · answered by Andrew 6 · 1 0

fedest.com, questions and answers