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.
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.
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.
The single most-tested computer concept is the difference between the two main memory types:
| Type | Volatile? | Role |
|---|---|---|
| RAM | Volatile — lost on power-off | Random-Access Memory: fast, read/write working memory the CPU uses while running. |
| ROM | Non-volatile — retained | Read-Only Memory: permanent, non-removable storage that holds firmware/boot code even with power off. |
| EEPROM / Flash | Non-volatile | Electrically erasable ROM that can be rewritten — used for firmware updates, SSDs, USB drives. |
| Cache | Volatile | Small, very fast RAM close to the CPU holding recently-used data. |
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.
| Interface | Notes |
|---|---|
| USB | Universal 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 / DisplayPort | Digital video/audio output to displays. |
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.
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.