Semiconductor diodes (one-way current), half-wave rectification, logic gates (AND, OR, NOT, NAND, NOR), truth tables, combining gates, and the societal impact of electronics.
A diode is made from a semiconductor material (silicon or germanium) with a junction that allows current to flow in only one direction:
The I-V characteristic of a diode is non-ohmic. Forward current rises sharply after a small threshold voltage (~0.6 V for silicon). In reverse, only a tiny leakage current flows until breakdown voltage is reached.
A single diode in series with an AC supply produces a half-wave rectified output, only positive half-cycles pass. This converts AC to a pulsating DC suitable for further filtering.

Logic gates are electronic switches with one or more binary inputs and one output. Each input and output is either 0 (low voltage, ~0 V) or 1 (high voltage, e.g. 5 V).

NOT gate (inverter): One input, one output. The output is the opposite of the input.
| A | Output |
|---|---|
| 0 | 1 |
| 1 | 0 |
AND gate: Output is 1 only when all inputs are 1.
| A | B | Output |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
OR gate: Output is 1 when at least one input is 1.
| A | B | Output |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
NAND gate: AND followed by NOT. Output is 0 only when all inputs are 1 (otherwise 1).
| A | B | Output |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
NOR gate: OR followed by NOT. Output is 1 only when all inputs are 0.
| A | B | Output |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
Gates can be wired together to implement any logical function. To find the output for a combination circuit:
From 2023 Paper 02, the gate represented by a symbol with one input and one output (inverting output) is the NOT gate (single-input gate whose output is the complement of the input).
The truth table with one input:
| Input | Output |
|---|---|
| 0 | 1 |
| 1 | 0 |
identifies the NOT gate.
For a NAND gate (2019 Paper 02):
| A | B | NAND output |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
The development of integrated circuits (microchips containing millions of logic gates) has transformed society:
Benefits include access to information, improved healthcare, and economic efficiency. Concerns include electronic waste (e-waste), security and privacy risks, and dependence on technology.
Memorise the NAND truth table: it is the complement of AND, only the 1,1 input combination gives output 0. Similarly, NOR is the complement of OR, only the 0,0 input gives output 1.
For combination circuit truth tables: work gate by gate, computing all intermediate outputs for each row before moving to the next gate. Label each intermediate node.