Computer Fundamentals Topic 7: Binary - Lesson 1

Bits, Bytes, And Binary Numbers

Learn the basic binary number system and common data units.

Binary Digits

Binary is a number system that uses only two digits: 0 and 1.

Computers use binary because electronic circuits can reliably represent two states, such as off and on.

  • A bit is one binary digit.
  • A byte is usually 8 bits.
  • Bytes are used to measure data and storage.

Place Values

Decimal place values are based on powers of 10. Binary place values are based on powers of 2.

For example, binary 1011 means 8 + 0 + 2 + 1, which equals decimal 11.

  • Right to left binary place values are 1, 2, 4, 8, 16, and so on.
  • Each position is either used with 1 or not used with 0.

Why Two States Are Enough

Binary may look limited because it has only 0 and 1, but long patterns of 0s and 1s can represent enormous variety. The power comes from combinations. One bit gives 2 possibilities. Two bits give 4. Eight bits give 256.

Electronic circuits work well with two clear states. It is easier to reliably detect low versus high voltage than many tiny levels. Binary gives computers a stable foundation for representing information.

  • 1 bit has 2 possible values.
  • 2 bits have 4 possible patterns.
  • 8 bits usually make 1 byte.
  • More bits allow more possible values.

Building Decimal Values From Binary

Binary place values double as you move left: 1, 2, 4, 8, 16, 32, and so on. A 1 means include that place value. A 0 means skip it.

For example, binary 1101 uses 8, 4, skips 2, and uses 1. The decimal value is 8 + 4 + 1 = 13. This is the same idea as decimal place value, but the base is 2 instead of 10.

  • Rightmost bit is worth 1.
  • Next bit is worth 2.
  • Next bit is worth 4.
  • Each place doubles as you move left.
  • Add the place values where the bit is 1.

Units Without Memorization Panic

Beginners often try to memorize every unit immediately. A better start is to understand the scale. Bits are tiny. Bytes are groups of bits. Kilobytes, megabytes, gigabytes, and terabytes describe larger amounts of data.

Exact computer storage units can be discussed in decimal or binary forms depending on context, which is why drive sizes may look slightly different in operating systems. For beginner understanding, focus first on relative size and purpose.

  • Bits are individual binary digits.
  • Bytes are the common building block for file sizes.
  • Text is usually much smaller than video.
  • Large apps and media require many more bytes.

Quick Summary

  • Binary uses 0 and 1.
  • A bit is one binary digit.
  • A byte is usually 8 bits.
  • Binary place values use powers of 2.

Practice Quiz

Now practice this lesson with MCQs and explanations:

Start the Bits, Bytes, And Binary Numbers quiz