Computer Terminology - Binary (2024)

Your personal computer is a type of digital electronic computer. It is called digital because all of the information inside it is represented and manipulated as numbers (the original meaning of “digit” is “finger,”and since people often count using their fingers, the term digit also came toto be applied to numbers). All of the numbers in a spreadsheet, all of the textcharacters in a Word document, all of the pictures and sounds stored in a computer,are ALL represented as numbers.

The number system that you use is base 10 (since people have 10 fingers, this works out well for them). When you write the number 1853, for example it means:

Computer Terminology - Binary (1)

Each digit (0-9) within a base 10 number is multiplied by the power of ten corresponding to its position. Notice that each digit place has 10 times the value of the digit place to the right of it. But you knew all this, of course.

Binary Numbers

But what of the poor computer, which has no fingers to count on? Base 10 is not convenient for a fingerless computer to use. What computers DO have, are electrical circuits, which are either on or off. Just two states to work with. So the natural number system for use in an electronic computer is base 2 (called the binary number system). Unlike you who have ten digits to calculate with (0, 1, 2, 3, 4, 5, 6, 7, 8, 9), the computer has only two digits (0 and 1) with which it must do everything. So, in a computer’s memory, a tiny transistor that is on (conducting a current) might represent a 1, while a transistor that is off would represent a 0 (zero).

The binary number 11100111101, for example, means:

Computer Terminology - Binary (2)

Ah! So they are the same number!

1853 (base 10)=11100111101 (base 2)

Notice that each binary digit position in the base 2 number has 2 times the value of the binary digit position to the right of it (since this is base 2; remember how base 10 worked).

It gets cumbersome saying “binary digit” all the time, so the shorter term “bit” was invented. A bit is one binary digit. A bit can hold either a 1 or a 0 (zero). A string of bits can hold larger numbers (just as you use strings of base 10 digits to represent numbers larger than 9).

Binary Representation of Numbers
Base 10 Base 2
0 00000000
1 00000001
2 00000010
3 00000011
4 00000100
5 00000101
... ...
65 01000001
66 01000010
67 01000011
... ...
254 11111110
255 11111111

A particularly handy size chunk of computer memory happens to be 8 bits long. This size chunk of memory can be used to represent any number from zero (00000000) to 255 (11111111). Why does 11111111 (base 2) equal 255 (base 10)? Because it means:

1x128 + 1x64 + 1x32 + 1x16 +
1x8 + 1x4 + 1x2 + 1x1 = 255

And why is this a handy size chunk of memory? Because if we want to represent all of the characters of the English alphabet, 8 digits is the first power of 2 that gives you enough possibilities to do this (a 4-bit long chunk can only hold numbers from zero to 7...not enough).

We have a special name for a chunk of memory that is 8 bits long: it is called a byte. This is the basic unit we use to measure computer memory size. (A chunk of memory 4 bits long is called a “nybble,” but you don't need to know that for the test.)

Text characters are represented in computer memory as numbers. How? You need a scheme for equating letters to numbers. The system used is called the ASCII code (American Standard Code for Information Interchange). The capital letter A is represented by the number 65 in the ASCII code (65 is 01000001 in binary). The first 65 ASCII codes (0 through 64) are used for an assortment of Control characters and special characters, so capital A ended up at 65. Capital B is 66 (01000010) and so on.

ASCII Representation of Characters (just a sample)
Character Base 10 Base 2
(return) 13 00001101
(space) 32 00100000
! 33 00100001
1 49 00110001
2 50 00110010
@ 64 01000000
A 65 01000001
B 66 01000010
C 67 01000011
a 97 01100001
b 98 01100010
c 99 01100011
(delete) 127 01111111

How does the computer know whether the 01000001 in a byte of memory is the number 65 or the letter A? Because an application program keeps track of what it put where in memory, so MS Word knows that a given byte where it has stored text contains numbers that represent letters.

For foreign alphabets that contain many more letters than English (such as Japanese Kanji) a newer extension of the the ASCII scheme called Unicode is now used (it uses two bytes to hold each letter; two bytes give 65,535 different values to represent characters).

Pictures are also represented as numbers in the computer. If you look closely at your display screen, you can see that the image on it is made up of lots of little spots, called picture elements (which is more commonly shortened to pixel). Each pixel in a screen image might be represented by three bytes in the computer; the numbers in the bytes tell the display how much red, blue, and green light should be mixed together to make the color of the pixel (three bytes can represent millions of possible colors for each pixel).

The programs that a computer executes are also stored as numbers. Each number in this case represents an instruction for the microprocessor (each operation the processor can perform, such as “fetch a number into a register” and “add the contents of two resister together,” are represented by unique binary codes).

Kilobytes, Megabytes, Gigabytes, etc.

Computer Terminology - Binary (2024)

FAQs

Computer Terminology - Binary? ›

In mathematics and in computing systems, a binary digit, or bit, is the smallest unit of data. Each bit has a single value of either 1 or 0, which means it can't take on any other value. Computers can represent numbers using binary code in the form of digital 1s and 0s inside the central processing unit (CPU) and RAM.

Why is a computer called a binary? ›

Digital computers use binary numbers for their operation because these computers are made out of on/off transistors. As such, each transistor has two states, which are best represented by binary numbers.

What are the 4 types of binary code? ›

  • Binary codes types.
  • BCD code (8421 code).
  • Alphanumeric codes.
  • Excess-3 and Gray code.
  • Parity method for error detection.

What is an example of binary code? ›

A bit string, interpreted as a binary number, can be translated into a decimal number. For example, the lower case a, if represented by the bit string 01100001 (as it is in the standard ASCII code), can also be represented as the decimal number "97".

What is a binary system in a computer? ›

The binary system is a way of representing data using 0s and 1s. This system is used by computers to represent all the data it works with. 1011110000011111.

What is binary in simple terms? ›

In computer science and mathematics, binary is a system where numbers and values are expressed 0 or 1. Binary is base-2, meaning that it only uses two digits or bits. For computers, 1 is true or "on", and 0 is false or "off". The concept of binary and bits are based on of Boolean Algebra.

How to say hello in binary code? ›

What is hello in binary? Therefore, HELLO in binary is written as 01001000 01000101 01001100 01001100 01001111.

Do computers still use binary? ›

Modern computers still use binary code in the form of digital ones and zeroes inside the CPU and RAM. A digital one or zero is simply an electrical signal that's either turned on or turned off inside of a hardware device like a CPU, which can hold and calculate many millions of binary numbers.

What is the most popular binary code? ›

The most common binary code in use today is the 8 bit ASCII code.

Is Morse code just binary? ›

This means that Morse code is not necessarily a binary system, but in a sense may be a ternary system, with a 10 for a "dit" or a "dot", a 1110 for a dash, and a 00 for a single unit of separation. Morse code can be represented as a binary stream by allowing each bit to represent one unit of time.

What does 1111 mean in binary code? ›

15 in Binary Number System

The binary equivalent of 15 is 1111. That means, the decimal number 15 can be written in the binary system as 1111.

What is the binary code for I love you? ›

01001001 00100000 01101100 01101111 01110110 01100101 00100000 01111001 01101111 01110101 is binary code for "I love you".

What does 01001000 01100101 01101100 01101100 01101111 00100001 mean? ›

01001000 01100101 01101100 01101100 01101111 00100001

Those ones and zeros might not look like anything to you, but in binary code the numbers are actually saying “Hello!

What is a binary number for dummies? ›

Binary numbers are written with only two digits: 1 and 0. A computer can store a binary number using open or closed switches to represent each digit. It is also easier to design chips to add binary. There are only three addition facts needed to make a binary adder work (0 + 0 = 0, 1 + 0 = 1, 1 + 1 = 10).

Why use binary? ›

Why Is Binary Important? Binary plays a critical role in computing because it allows computers to store and manipulate data using a system of switches that can be turned on or off, represented by the digits 0 and 1 . This binary code can represent any type of data, from text and numbers to images and sound.

Why is it called binary system? ›

binary number system, in mathematics, positional numeral system employing 2 as the base and so requiring only two different symbols for its digits, 0 and 1, instead of the usual 10 different symbols needed in the decimal system.

Why do computers use binary instead of words? ›

As mentioned above, binary has two states: off and on. If computers were to use the decimal system, there would be 10 states instead and they would have to work a lot harder to process them all. Binary is easier for computers to process, and it also takes up less space.

Why is computer only binary? ›

The binary schema of digital 1s and 0s offers a simple and elegant way for computers to work. It also offers an efficient way to control logic circuits and to detect an electrical signal's true (1) and false (0) states.

Why do computers convert to binary? ›

Therefore, in order for a computer to be able to process any kind of data, including text, images and sound, they must be converted into binary. Also known as base 2. form. If the data is not converted into binary – a series of 1s and 0s – the computer will simply not understand it or be able to process it.

Top Articles
Summon weapons
Understanding the Interdependence of Web 3.0 and Blockchain
Urist Mcenforcer
Die Windows GDI+ (Teil 1)
Costco The Dalles Or
Sportsman Warehouse Cda
Volstate Portal
Mr Tire Rockland Maine
Midway Antique Mall Consignor Access
Brenna Percy Reddit
zopiclon | Apotheek.nl
My.doculivery.com/Crowncork
Directions To O'reilly's Near Me
Craigslist Deming
Current Time In Maryland
Overton Funeral Home Waterloo Iowa
Vistatech Quadcopter Drone With Camera Reviews
CANNABIS ONLINE DISPENSARY Promo Code — $100 Off 2024
1773X To
Tamilyogi Proxy
Stardew Expanded Wiki
10 Fun Things to Do in Elk Grove, CA | Explore Elk Grove
Is The Yankees Game Postponed Tonight
Melendez Imports Menu
Dragger Games For The Brain
683 Job Calls
John Philip Sousa Foundation
Rek Funerals
031515 828
Eegees Gift Card Balance
Top Songs On Octane 2022
Filmy Met
Life Insurance Policies | New York Life
October 19 Sunset
Rocksteady Steakhouse Menu
Mega Millions Lottery - Winning Numbers & Results
Royals op zondag - "Een advertentie voor Center Parcs" of wat moeten we denken van de laatste video van prinses Kate?
CVS Near Me | Somersworth, NH
Craigs List Jonesboro Ar
450 Miles Away From Me
Page 5662 – Christianity Today
Mandy Rose - WWE News, Rumors, & Updates
Craigslist Pets Plattsburgh Ny
Cleveland Save 25% - Lighthouse Immersive Studios | Buy Tickets
Quaally.shop
Rise Meadville Reviews
Food and Water Safety During Power Outages and Floods
Gelato 47 Allbud
Gummy Bear Hoco Proposal
Swissport Timecard
211475039
Fetllife Com
Latest Posts
Article information

Author: Rueben Jacobs

Last Updated:

Views: 5916

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Rueben Jacobs

Birthday: 1999-03-14

Address: 951 Caterina Walk, Schambergerside, CA 67667-0896

Phone: +6881806848632

Job: Internal Education Planner

Hobby: Candle making, Cabaret, Poi, Gambling, Rock climbing, Wood carving, Computer programming

Introduction: My name is Rueben Jacobs, I am a cooperative, beautiful, kind, comfortable, glamorous, open, magnificent person who loves writing and wants to share my knowledge and understanding with you.