Skip to content

Introduction to IT

Information Technology (IT) is the use of digital technology - computers, networks, and software - to store, process, and communicate information. IT support is the role responsible for keeping these systems running and helping people use them effectively.


  • Computing began with punch cards - holes in cards represented binary data for early machines
  • Cryptography during WWII (e.g., Enigma decryption) drove major advances in computational design
  • Early computers filled entire rooms; today a smartphone has billions of times more processing power
  • The rise of open-source software (anyone can view, modify, share code) fundamentally shaped modern computing

Computers communicate in binary - a base-2 number system using only 1s and 0s.

TermDefinition
BitA single binary digit - 0 or 1
ByteA group of 8 bits
CharacterOne byte can store one character (256 possible values with 8 bits)

Transistors - the fundamental building blocks of CPUs - have two states: on (1) or off (0). Binary maps directly to this physical reality.

Character encoding assigns binary values to human-readable characters:

  • ASCII: Maps 128 characters (English letters, digits, symbols) to binary values
  • UTF-8: Extends ASCII, represents characters using 1–4 bytes - supports emoji, international scripts

Example: the binary value 01100001 = decimal 97 = ASCII character a

Each bit position represents a power of 2:

Bit position: 7 6 5 4 3 2 1 0
Power of 2: 128 64 32 16 8 4 2 1
Binary: 01100001
Result: 0+64+32+0+0+0+0+1 = 97

Modern computing is built on abstraction - each layer hides complexity from the layer above it.

LayerDescription
HardwarePhysical components - CPU, RAM, storage, motherboard
Operating SystemManages hardware and provides services to software
SoftwareApplications that run on the OS and solve user problems
UserThe human interacting with the system

Logic gates are the building blocks of digital circuits. They take binary inputs and produce binary outputs based on logical rules:

GateOperation
ANDOutput is 1 only if ALL inputs are 1
OROutput is 1 if ANY input is 1
NOTFlips the input (0 → 1, 1 → 0)
NAND / NOR / XORCombinations of the above

Billions of logic gates make up a modern CPU.


IT Support specialists:

  • Fix technology - hardware, software, networking issues
  • Improve how people use technology - training, documentation, tool selection
  • Keep systems running - monitoring, updates, security, backups
  • Bridge technical and non-technical worlds - translating between user needs and technical solutions

Key skill: troubleshooting - systematic problem-solving under pressure. A good IT specialist asks questions before reaching for solutions.