Binary, Hex & Number Conversions — GCSE Computer Science Revision
Revise Binary, Hex & Number Conversions for GCSE Computer Science. Step-by-step explanation, worked examples, common mistakes and exam-style practice aligned to AQA, Edexcel, OCR, WJEC, Eduqas, CCEA, Cambridge International (CIE), SQA, IB, AP.
At a glance
- What StudyVector is
- An exam-practice platform with board-aligned questions, explanations, and adaptive next steps.
- This topic
- Binary, Hex & Number Conversions in GCSE Computer Science: explanation, examples, and practice links on this page.
- Who it’s for
- Students revising GCSE Computer Science for UK exams.
- Exam boards
- Practice is aligned to major specifications (AQA, Edexcel, OCR, WJEC, Eduqas, CCEA, Cambridge International (CIE), SQA, IB, AP).
- Free plan
- Sign up free to use tutor paths and feedback on your answers. Free access is 3 days uncapped, then 30 min practice/day. Pricing
- What makes it different
- Syllabus-shaped practice and progress tracking—not generic AI answers.
Topic has curated content entry with explanation, mistakes, and worked example. [auto-gate:promote; score=70.6]
Next in this topic area
Next step: Images & Sound Representation
Continue in the same course — structured practice and explanations on StudyVector.
Go to Images & Sound RepresentationWhat is Binary, Hex & Number Conversions?
At GCSE, you must be able to convert numbers between the denary (base-10), binary (base-2), and hexadecimal (base-16) number systems. Binary is the fundamental language of computers, while hexadecimal is often used as a more human-readable shorthand for binary, as one hex digit represents exactly four binary digits. Understanding these conversions is key to understanding how computers process and store numeric data.
Board notes: All boards (AQA, Edexcel, OCR) require you to be fluent in converting between denary, binary (up to 8 bits), and hexadecimal (up to 2 digits). Binary shifts are also a common topic on all specifications.
Step-by-step explanationWorked example
To convert the denary number 45 to binary: The largest power of 2 less than 45 is 32. 45 - 32 = 13. The largest power of 2 less than 13 is 8. 13 - 8 = 5. The largest power of 2 less than 5 is 4. 5 - 4 = 1. So, 45 = 32 + 8 + 4 + 1. In binary, this is 00101101 (using 8 bits). To convert this to hex, split it into two nibbles: 0010 and 1101. 0010 is 2. 1101 is 13, which is D in hex. So, 45 in denary is 2D in hexadecimal.
Practise this topic
Jump into adaptive, exam-style questions for Binary, Hex & Number Conversions. Free to start; sign in to save progress.
Common mistakes
- 1Making place value errors when converting from binary or hex to denary. Remember binary place values are powers of 2 (1, 2, 4, 8, 16...) and hex are powers of 16.
- 2Forgetting that hexadecimal uses letters A-F to represent the denary values 10-15. A common mistake is to stop at 9.
- 3When converting from denary to binary, forgetting to write down a 0 in a place value column that isn't used. Every position must have a bit.
Binary, Hex & Number Conversions exam questions
Exam-style questions for Binary, Hex & Number Conversions with mark-scheme style solutions and timing practice. Aligned to AQA, Edexcel, OCR, WJEC, Eduqas, CCEA, Cambridge International (CIE), SQA, IB, AP specifications.
Binary, Hex & Number Conversions exam questionsGet help with Binary, Hex & Number Conversions
Get a personalised explanation for Binary, Hex & Number Conversions from the StudyVector tutor. Ask follow-up questions and work through problems with step-by-step support.
Open tutorFree full access to Binary, Hex & Number Conversions
Sign up in 30 seconds to unlock step-by-step explanations, exam-style practice, instant feedback and on-demand coaching — completely free, no card required.
Try a practice question
Unlock Binary, Hex & Number Conversions practice questions
Get instant feedback, step-by-step help and exam-style practice — free, no card needed.
Start Free — No Card NeededAlready have an account? Log in
Step-by-step method
Step-by-step explanation
4 steps · Worked method for Binary, Hex & Number Conversions
Core concept
At GCSE, you must be able to convert numbers between the denary (base-10), binary (base-2), and hexadecimal (base-16) number systems. Binary is the fundamental language of computers, while hexadecimal…
Frequently asked questions
Why do we use hexadecimal in computer science?
Hexadecimal is used as a convenient, short-hand way to represent long binary numbers. Since one hex digit corresponds to a 4-bit binary number (a nibble), it makes it much easier for programmers to read and write binary values, such as memory addresses or colour codes.
How do you do a binary shift?
A logical binary left shift multiplies a number by 2 for each place shifted. A logical right shift divides it by 2. For example, shifting 000110 (6) one place to the left gives 001100 (12).