Associate CET · Competency 16.0

Computer Applications

Modern electronics work happens around computers — they run test equipment, store service data, control instruments, and are themselves the device under repair. The Associate CET exam expects familiarity with the building blocks: how a computer is organized, the kinds of memory, the ports that connect equipment, and the common networking terms.

How a computer is organized

At the block-diagram level every computer is the same: a CPU (the processor) fetches instructions and data from memory over a set of shared wires called buses, processes them, and exchanges data with the outside world through input/output (I/O) ports. The same fetch-process-store cycle underlies everything from a microcontroller to a desktop.

The CPU talks to memory and I/O over a shared system bus — the universal computer block diagram.
Bits, bytes & binary

Computers represent everything — numbers, characters, instructions — as combinations of binary 0s and 1s. A single 0/1 is a bit; 8 bits make a byte. The number of distinct values a group of bits can represent is 2 raised to the number of bits, so an 8-bit code gives 28 = 256 combinations.i2ⁿ combinations: each added bit doubles the possibilities. 4 bits = 16, 8 bits = 256, 16 bits = 65,536. This is why memory and addresses come in powers of two.

Exam staples: a byte is 8 bits; an 8-bit code has 256 combinations; characters and data are stored in binary. For converting between binary, decimal, and hex, use the Binary Converter.
Types of memory

The single most-tested computer concept is the difference between the two main memory types:

TypeVolatile?Role
RAMVolatile — lost on power-offRandom-Access Memory: fast, read/write working memory the CPU uses while running.
ROMNon-volatile — retainedRead-Only Memory: permanent, non-removable storage that holds firmware/boot code even with power off.
EEPROM / FlashNon-volatileElectrically erasable ROM that can be rewritten — used for firmware updates, SSDs, USB drives.
CacheVolatileSmall, very fast RAM close to the CPU holding recently-used data.
The classic question: permanent, non-volatile, non-removable storage is ROM. RAM is the volatile working memory that's erased when power is lost.
Ports & interfaces

Connecting equipment to a computer is everyday technician work. The dominant modern interface is USB (Universal Serial Bus); older equipment used the parallel "Centronics" printer port and serial (RS-232) ports.

InterfaceNotes
USBUniversal Serial Bus — hot-pluggable, supplies power, the modern standard for printers, drives, instruments.
Parallel (Centronics)Legacy printer port sending 8 bits at once over many wires. Classic PC-to-printer connection.
Serial (RS-232)Sends data one bit at a time; long used for instruments, modems, and console ports.
Ethernet (RJ-45)Wired networking interface connecting computers to a LAN.
HDMI / DisplayPortDigital video/audio output to displays.
Exam point: a printer connected directly to a PC uses a USB or parallel Centronics connection — the two the exam pairs together.
Software & the operating system

Hardware vs. software

Hardware is the physical machine; software is the instructions it runs. Firmware is software stored in ROM/flash that's tightly bound to the hardware (like a BIOS or a device's embedded code).

Operating system

The OS (Windows, Linux, macOS) manages memory, files, processes, and hardware, and provides the interface programs and users work through. Drivers let the OS talk to specific devices.

Common networking terms
CPU
Central Processing Unit — the processor.
RAM
Random-Access Memory — volatile working memory.
ROM
Read-Only Memory — non-volatile permanent storage.
FTP
File Transfer Protocol — transfers files over a network.
DHCP
Dynamic Host Configuration Protocol — auto-assigns IP addresses.
IP
Internet Protocol — the addressing scheme for network devices.
LAN
Local Area Network — computers networked in one location.
USB
Universal Serial Bus — the common peripheral interface.
Computers as test tools

Beyond being a repair subject, computers are instruments: PC-based oscilloscopes and logic analyzers, software that logs meter readings, and control of bench equipment over USB or Ethernet. An analog-to-digital converter (ADC) is the bridge — it samples a real-world analog voltage and converts it to the binary values software can store and display. When equipment is software-controlled, troubleshooting may require a computer to read its diagnostics.

Practice this topic: Computer-applications questions are in the Study Hub quiz bank, key terms are in Flashcards, and number-base conversions are in the Binary Converter.