Easy1 markShort Answer
AQA GCSE · Question 01.1 · Fundamentals of data representation
Convert the binary number 11010100 into decimal.
Convert the binary number 11010100 into decimal.
How to approach this question
To convert a binary number to decimal, you need to use place values which are powers of 2.
1. Write down the binary number: 11010100.
2. Above each digit, write its corresponding place value, starting from the right with 2^0 (1), then 2^1 (2), 2^2 (4), and so on.
128 64 32 16 8 4 2 1
1 1 0 1 0 1 0 0
3. Add up the place values where the binary digit is 1.
4. The sum is 128 + 64 + 16 + 4.
5. Calculate the final sum: 128 + 64 = 192, 192 + 16 = 208, 208 + 4 = 212.
Full Answer
212
Binary numbers are read from right to left, with the rightmost digit being the least significant bit. The place values are powers of 2. For an 8-bit number like 11010100, the place values are:
- 1 * 2^7 = 128
- 1 * 2^6 = 64
- 0 * 2^5 = 0
- 1 * 2^4 = 16
- 0 * 2^3 = 0
- 1 * 2^2 = 4
- 0 * 2^1 = 0
- 0 * 2^0 = 0
Adding these values together gives: 128 + 64 + 0 + 16 + 0 + 4 + 0 + 0 = 212.
Common mistakes
✗ Starting place values from the left instead of the right.
✗ Calculating powers of 2 incorrectly (e.g., 2^3 = 6 instead of 8).
✗ Including place values where the binary digit is 0 in the sum.
Practice the full AQA GCSE Computer Science Paper 2
46 questions · hints · full answers · grading
More questions from this exam
Q01.2Convert the binary number 10111001 into hexadecimal. You should show your working.MediumQ01.3State the largest decimal number that can be represented using 6 bits.EasyQ02.1Add together the following three binary numbers and give your answer in binary.
00110110
1001...MediumQ02.2Apply a binary shift three places to the right on the bit pattern 10101000. Give the result using...EasyQ02.3The arithmetic effect of applying a left binary shift of two to a binary number is to multiply th...Easy
Expert