|
COMPUTER BASICS
|
||||||||
|
WHAT IS A COMPUTER? |
||||||||
|
The dictionary definition says a computer is "an electronic machine for making calculations", but a lot of the tasks we perform on a computer, like e-mail and word processing don't seem to involve much calculating. So, just what is a computer, anyway? Let's make our own definition. A computer is a machine for processing and storing information electronically. Add to that a way to get information into the computer in the first place, and some way to get it out afterwards so we can look at it and presto, we have ourselves a general-purpose computer. Altogether it has four basic parts or functions:
|
||||||||
|
Digital and Analog - There are two ways to represent information, Digital and Analog. Analog is any piece of information that can have different values; no limit. For example: time, temperature, and speed of your car can all have a continuous range of values. So while it is 55 degrees outside, it could really be 55.12492 degrees, or any value between that and 55. Digital information is restricted to be specific; a limit. For example, a traffic light is red, yellow or green; not "yellow-green" or orange. Computers use a form of digital information called binary information. Here, the information is restricted to only two values: one or zero. You can also think of something that is Analog if it has moving parts, while Digital does not contain moving parts but some kind of processing unit. |
||||||||
|
Binary |
|
The Mathematics of Computing Humans represent numbers using decimal notation: that is, each digit can have one of ten values, zero through nine. This is also called “base 10 or power of 10's” mathematics. Binary information uses only ones and zeros , which would be “base 2 or power of 2's” mathematics. Just as with regular numbers (decimal) you start at 0, count to 9, and then reset the 9 to a 0 and add a 1 in the "tens" place, with binary information you start at 0, count to 1, then reset the 1 to a 0 and add a 1 in the "twos" place. So binary counting goes like this: 0, 1, 10, 11, 100, 101, 110, 111, 1000, etc. The number 111 is the binary equivalent of the decimal number 7. How? Just as 111 in decimal means 100 (10 to the second power) plus 10 (10 to the first power) plus 1, in binary 111 is 4 (2 to the second power) plus 2 (2 to the first power) plus 1, which is 7. As you can see, binary numbers can get pretty long. For example, the number 181 in decimal is 10110101 in binary. Everything your computer does is in binary then, you will start seeing that everything is measured by it like memory, hard drives, processors, and file sizes are just a few. |