Ever wondered how computers actually store and process numbers? They...
Understanding Number Bases: Binary, Denary, and Hexadecimal

Understanding Number Systems and Binary
Binary is the language computers speak, using only two digits: 0 and 1. Think of it like a series of light switches - 0 means "off" and 1 means "on". This base 2 system is perfect for computers because their circuits can easily represent these two states.
Denary (or decimal) is what you use every day - it's base 10 with digits 0-9. When you write 238, you're using the denary system without even thinking about it. The largest denary number you can store in 8 bits is 255, which is quite important to remember.
Hexadecimal is base 16, using 0-9 and letters A-F (where A=10, B=11, C=12, D=13, E=14, F=15). Programmers love hex because it's a neat way to represent binary numbers.
Here's the clever bit: each position in binary represents a power of 2. In an 8-bit system, you get positions worth 128, 64, 32, 16, 8, 4, 2, and 1. For example, 11101110 in binary equals 238 in denary, whilst 16 in denary is simply 00010000 in binary.
Quick tip: A nibble is 4 bits - exactly half a byte! It's called a nibble because it's a "bite" of a byte.
We thought you’d never ask...
Similar content
Most popular content: Binary Number System
2Understanding Binary & Denary
Explore the fundamentals of binary and denary number systems, including place values and conversions. This summary covers key concepts such as bits, base 2 and base 10, and how to calculate denary equivalents from binary numbers. Ideal for GCSE Computer Science students.
Computer Science Fundamentals
Explore essential concepts in computer science, including binary arithmetic, algorithms, data types, and programming fundamentals. This comprehensive guide covers topics such as binary and hexadecimal systems, sorting algorithms, data compression techniques, and ethical issues in computing. Ideal for GCSE Edexcel students seeking to enhance their understanding of computer science principles.
Most popular content in Computer Science
9Computer Science quiz
Purpose, Components and functions of CPU. Also von neuman architecture
GCSE Computer Science Overview
Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.
GCSE Computer Science Revision
Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.
computer science,geography
this will help you revise for when you are next tested on these questions this will also help you to remember
computing quiz for
good luck
GCSE Computer Science // Revision Notes
Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 1. Paper 2 is in my bio.
GCSE Computer Science Algorithms
Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.
cs ocr
Level up your computer science knowledge with this comprehensive flashcard set designed for grade 11 students. Dive deep into complex concepts and ace your exams!
A-Level Computer Science Paper 1 (Revision sheet)
(Apologies if some things look a bit off, converting the PowerPoint to PDF was a struggle as it wouldn’t let me include my custom drawings for diagrams)
Most popular content
9Sociology of Education Overview
Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.
Sociology of Families: Comprehensive Revision
Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.
Criminology: Crime & Punishment Overview
Comprehensive mindmaps covering key concepts in the Crime and Punishment topic for WJEC Criminology Unit 4. This resource includes detailed insights into the Criminal Justice System, crime prevention strategies, sentencing models, and the roles of various agencies. Ideal for A-Level revision, ensuring you grasp essential theories and legislative processes to excel in your exams.
Comprehensive Crime & Deviance Overview
Explore an extensive revision of crime and deviance topics, including theories, types of crime, and the impact of media. This resource covers key concepts such as Marxism, functionalism, gender and crime, and the influence of globalization on criminal behavior. Ideal for students seeking a thorough understanding of criminology and its various theories. Type: Full Topic Revision.
Cell Biology and Cell structure
cell structures
WJEC Unit 4 Criminology
Criminology unit 4 detailed revision note
Sociological Theories Overview
Comprehensive revision of key sociological theories including Functionalism, Marxism, Feminism, and Interpretivism. Explore concepts like value freedom, identity formation, and the critique of social control. Ideal for AQA A-Level Sociology students preparing for exams. This summary covers essential theories and their implications in sociology, providing a clear understanding of each perspective.
The functions of subcellular structures - B1 Biology
Flashcards on the different functions of subcellular structures: cell membrane, nucleus, mitochondria, ribosomes, cytoplasm, permant vacuole, chloroplasts and cell wall.
1.cells Gcse biology question cards
combined science higher biology
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Understanding Number Bases: Binary, Denary, and Hexadecimal
Ever wondered how computers actually store and process numbers? They don't use our familiar decimal system at all! Instead, computers work with different number systems that might seem strange at first, but they're actually quite straightforward once you get the...

Understanding Number Systems and Binary
Binary is the language computers speak, using only two digits: 0 and 1. Think of it like a series of light switches - 0 means "off" and 1 means "on". This base 2 system is perfect for computers because their circuits can easily represent these two states.
Denary (or decimal) is what you use every day - it's base 10 with digits 0-9. When you write 238, you're using the denary system without even thinking about it. The largest denary number you can store in 8 bits is 255, which is quite important to remember.
Hexadecimal is base 16, using 0-9 and letters A-F (where A=10, B=11, C=12, D=13, E=14, F=15). Programmers love hex because it's a neat way to represent binary numbers.
Here's the clever bit: each position in binary represents a power of 2. In an 8-bit system, you get positions worth 128, 64, 32, 16, 8, 4, 2, and 1. For example, 11101110 in binary equals 238 in denary, whilst 16 in denary is simply 00010000 in binary.
Quick tip: A nibble is 4 bits - exactly half a byte! It's called a nibble because it's a "bite" of a byte.
We thought you’d never ask...
Similar content
Most popular content: Binary Number System
2Understanding Binary & Denary
Explore the fundamentals of binary and denary number systems, including place values and conversions. This summary covers key concepts such as bits, base 2 and base 10, and how to calculate denary equivalents from binary numbers. Ideal for GCSE Computer Science students.
Computer Science Fundamentals
Explore essential concepts in computer science, including binary arithmetic, algorithms, data types, and programming fundamentals. This comprehensive guide covers topics such as binary and hexadecimal systems, sorting algorithms, data compression techniques, and ethical issues in computing. Ideal for GCSE Edexcel students seeking to enhance their understanding of computer science principles.
Most popular content in Computer Science
9Computer Science quiz
Purpose, Components and functions of CPU. Also von neuman architecture
GCSE Computer Science Overview
Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.
GCSE Computer Science Revision
Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.
computer science,geography
this will help you revise for when you are next tested on these questions this will also help you to remember
computing quiz for
good luck
GCSE Computer Science // Revision Notes
Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 1. Paper 2 is in my bio.
GCSE Computer Science Algorithms
Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.
cs ocr
Level up your computer science knowledge with this comprehensive flashcard set designed for grade 11 students. Dive deep into complex concepts and ace your exams!
A-Level Computer Science Paper 1 (Revision sheet)
(Apologies if some things look a bit off, converting the PowerPoint to PDF was a struggle as it wouldn’t let me include my custom drawings for diagrams)
Most popular content
9Sociology of Education Overview
Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.
Sociology of Families: Comprehensive Revision
Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.
Criminology: Crime & Punishment Overview
Comprehensive mindmaps covering key concepts in the Crime and Punishment topic for WJEC Criminology Unit 4. This resource includes detailed insights into the Criminal Justice System, crime prevention strategies, sentencing models, and the roles of various agencies. Ideal for A-Level revision, ensuring you grasp essential theories and legislative processes to excel in your exams.
Comprehensive Crime & Deviance Overview
Explore an extensive revision of crime and deviance topics, including theories, types of crime, and the impact of media. This resource covers key concepts such as Marxism, functionalism, gender and crime, and the influence of globalization on criminal behavior. Ideal for students seeking a thorough understanding of criminology and its various theories. Type: Full Topic Revision.
Cell Biology and Cell structure
cell structures
WJEC Unit 4 Criminology
Criminology unit 4 detailed revision note
Sociological Theories Overview
Comprehensive revision of key sociological theories including Functionalism, Marxism, Feminism, and Interpretivism. Explore concepts like value freedom, identity formation, and the critique of social control. Ideal for AQA A-Level Sociology students preparing for exams. This summary covers essential theories and their implications in sociology, providing a clear understanding of each perspective.
The functions of subcellular structures - B1 Biology
Flashcards on the different functions of subcellular structures: cell membrane, nucleus, mitochondria, ribosomes, cytoplasm, permant vacuole, chloroplasts and cell wall.
1.cells Gcse biology question cards
combined science higher biology
Students love us — and so will you.
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.