Binary → decimal (the easy direction)
Method: write the place values above the bits, then add the values wherever there is a 1.
Convert 10110101:
| Place value | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
|---|
| Bit | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 |
128+32+16+4+1=181
That is the whole method. Write the row, circle the 1s, add.
Decimal → binary (the reverse)
Method: work left to right through the place values, asking "does it fit?" Subtract when it does.
Convert 181:
| Place value | Does it fit into what's left? | Bit | Remaining |
|---|
| 128 | 128 ≤ 181 ✓ | 1 | 181 − 128 = 53 |
| 64 | 64 > 53 ✗ | 0 | 53 |
| 32 | 32 ≤ 53 ✓ | 1 | 53 − 32 = 21 |
| 16 | 16 ≤ 21 ✓ | 1 | 21 − 16 = 5 |
| 8 | 8 > 5 ✗ | 0 | 5 |
| 4 | 4 ≤ 5 ✓ | 1 | 5 − 4 = 1 |
| 2 | 2 > 1 ✗ | 0 | 1 |
| 1 | 1 ≤ 1 ✓ | 1 | 0 |
Reading the bit column downwards: 10110101
Two checks that catch almost every error:
- The remaining value must reach exactly 0 by the end. If it does not, you have made a mistake.
- Convert your answer back to decimal — it takes ten seconds and confirms the result.
Padding to 8 bits
Convert 11: only the 8, 2 and 1 columns are used, giving 1011. But if the question asks for an 8-bit answer, pad with leading zeros:
11=00001011
Leading zeros do not change the value — 1011 and 00001011 are the same number — but an 8-bit answer must show all eight bits.
AQA tip. Never attempt these mentally. Writing the place-value row and the subtraction column takes twenty seconds and turns a question where you might slip into one you cannot get wrong. Mark schemes award method marks for the working.