Network Administration: Understanding Binary

Before you can understand the details of how IP addressing works, you need to understand how the binary numbering system works because binary is the basis of IP addressing.


Binary is a counting system that uses only two numerals: 0 and 1. In the decimal system (with which most people are accustomed), you use 10 numerals: 0–9.In an ordinary decimal number — such as 3,482 — the rightmost digit represents ones; the next digit to the left, tens; the next, hundreds; the next, thousands; and so on.


These digits represent powers of ten: first 100 (which is 1); next, 101 (10); then 102 (100); then 103 (1,000); and so on. In binary, you have only two numerals rather than ten, which is why binary numbers look somewhat monotonous, as in 110011, 101111, and 100001.


The positions in a binary number (called bits rather than digits) represent powers of two rather than powers of ten: 1, 2, 4, 8, 16, 32, and so on. To figure the decimal value of a binary number, you multiply each bit by its corresponding power of two and then add the results. The decimal value of binary 10111, for example, is calculated as follows:


  1 × 20 = 1 ×  1 =   1
+ 1 × 21 = 1 × 2 = 2
+ 1 × 22 = 1 × 4 = 4
+ 0 × 23 = 0 × 8 = 0
+ 1 × 24 = 1 × 16 = _16
23

Fortunately, converting a number between binary and decimal is something a computer is good at — so good, in fact, that you’re unlikely ever to need to do any conversions yourself. Instead, the point is to have a basic understanding of how computers store information and — most important — to understand how the binary counting system works.


Here are some of the more interesting characteristics of binary and how the system is similar to and differs from the decimal system:




  • In decimal, the number of decimal places allotted for a number determines how large the number can be. If you allot six digits, for example, the largest number possible is 999,999. Because 0 is itself a number, however, a six-digit number can have any of 1 million different values.


    Similarly, the number of bits allotted for a binary number determines how large that number can be. If you allot eight bits, the largest value that number can store is 11111111, which happens to be 255 in decimal.




  • To quickly figure how many different values you can store in a binary number of a given length, use the number of bits as an exponent of two. An eight-bit binary number, for example, can hold 28 values. Because 28 is 256, an eight-bit number can have any of 256 different values. This is why a byte — eight bits — can have 256 different values.




  • This “powers of two” thing is why computers don’t use nice, even, round numbers in measuring such values as memory or disk space. A value of 1K, for example, is not an even 1,000 bytes: It’s actually 1,024 bytes because 1,024 is 210. Similarly, 1MB is not an even 1,000,000 bytes but instead 1,048,576 bytes, which happens to be 220.


    One basic test of computer nerd-dom is knowing your powers of two because they play such an important role in binary numbers. Just for the fun of it, but not because you really need to know, the table below lists the powers of two up to 32.











































































































































Powers of Two
PowerBytesKilobytesPowerBytesK, MB, or GB
212217131,072 128K
224218262,144 256K
238219524,288 512K
24162201,048,5761MB 
25322212,097,1522MB 
26642224,194,3044MB 
271282238,388,6088MB 
2825622416,777,21616MB 
2951222533,554,43232MB 
2101,0241K22667,108,86464MB
2112,0482K227134,217,728128MB
2124,0964K228268,435,456256MB
2138,1928K229536,870,912512MB
21416,38416K2301,073,741,8241GB
21532,76832K2312,147,483,6482GB
21665,53664K2324,294,967,2964GB


dummies

Source:http://www.dummies.com/how-to/content/network-administration-understanding-binary.html

No comments:

Post a Comment