Number Systems Flashcards
(15 cards)
Explain why computers process data in binary format.
Computers process data using logic gates that can only have two states (1/0)
What is Denary?
Denary is a number system that is made up of 10 digits (0-9) and is referred to as a base-10 number system.
What is binary?
Binary is a number system that is made up of two digits (1 and 0) and is referred to as a base-2 number system.
What is hexadecimal?
Hexadecimal is a number system that is made up of 16 digits, 10 numbers (0-9) and 6 letters (A-F) and is referred to as a base-16 number system.
3 Advantages of Hexadecimal
It takes fewer digits to represent a given value in hexadecimal than in binary.
The more bits there are in a binary number, the harder it makes for a human to read
Numbers with more bits are more prone to errors when being copied
Uses of Hexadecimal
MAC addresses, Colour code, URLs, Error codes and IP Addresses
0 + 0 =
0
1 + 1 =
1 0
1 + 1 + 1 =
1 1
1 + 0 =
1
0 + 1 =
1
What is an overflow error?
An overflow error occurs when the result of a binary addition exceeds the available bits.
What does a binary logical left shift do?
Double a number.
What does a binary logical right shift do?
Half a number.
What is two’s complement?
A method of using signed binary values to represent negative numbers.