Abstract


  • Provides standardised way to express measurements, allowing for easy comparison of values

Bit


  • Holds a value of 0 or 1


  • Let n be the number of bits we have, where n>=1

  • With n bits, we can represent values

Given 2 bits

When n is , 2^n = 4, 4 values: 00, 01, 10, 11 which are corresponding to 0,1,2,3.

Maximum value of n bits

Approach 1:

Approach 2:

Given 2 bit

n is

  • Approach 1: 2^2 - 1 = 3
  • Approach 2: 2^1 + 2^0 = 3

Bit String

  • A collection of 0s & 1s

Byte


  • A group of 8 Bit
  • The smallest unit a programming language uses to store the data and instruction

KB vs KiB?

B refers to Byte, the K refers to and Ki refers to . So 1KB is bytes and 1KiB is bytes.

Word


Qubit


  • Waiting to be explored