Unit 1 - Data representation Flashcards
What are the three number system you need to know?
- Denary
- Binary
- Hexadecimal
What is binary?
the code that computers and machines use to process information. Is it a base-2 system (composed of 1 and 0). All data that computers are required to process has to be converted into binary for the computer to understand.
Why do computers use binary?
It is easier for computers to understand because the processor inside the computer can execute only binary commands
What is denary?
It is a base-10 system (there are 10 digits that form the base system which are 0,1,2,3,4,5,6,7,8,9) (basically it is just normal numbers that humans use).
What is hexadecimal?
Another number system that computers use for processing. It is a base-16 number system. Similar to denary as it uses the number 0-9, but the numbers 10-15 are represented by the letters A-F.
Why do humans like hexadecimal more than binary?
Computers only use binary, hexadecimal is more for humans as it shortens a long binary number.