LOGBOOK

HELP

Quiz Entry - updated: 2026.07.14

What are the position values in an 8-bit binary octet, and why are they important?

From left to right the eight bit positions are worth 128, 64, 32, 16, 8, 4, 2, 1 (each is 2ⁿ); memorizing them lets you convert octets by hand.

Bar chart of the eight octet bit positions on a log-2 scale, each worth double the one to its right: 128 64 32 16 8 4 2 1

* Each bit position is worth 2ⁿ — double the position to its right. Memorize 128 64 32 16 8 4 2 1. *

Binary (Base 2) position values in an octet:

Bit Position 7 6 5 4 3 2 1 0
Position Value 128 64 32 16 8 4 2 1

Key memorization: 128, 64, 32, 16, 8, 4, 2, 1

Calculation: Each position = 2^n where n is the bit position

  • 2⁷ = 128, 2⁶ = 64, 2⁵ = 32, 2⁴ = 16
  • 2³ = 8, 2² = 4, 2¹ = 2, 2⁰ = 1

Range of an octet: 0 (00000000) to 255 (11111111)

Go deeper:

From Quiz: NETW1 / Number Systems | Updated: Jul 14, 2026