3) Fundamentals of Data Representation Flashcards
Learn changing between binary, denary, hex Learn binary addition, subtraction, multiplication
How big is a nibble?
A nibble is 4 bits
How big is a byte?
A byte is 8 bits
Rank the storage units
Bit (1) Nibble (4) Byte (8) Kilobyte (1000B) Megabyte (1000KB) Gigabyte (1000MB) Terbayte (1000GB)
What is the equation for the capacity of a device?
required capacity = number of files x size of a single file
What digits does hexadecimal use?
Hexadecimal uses 0-9 then A-F (16 different symbols)
Why is hexadecimal used?
Allows us to find errors easier
What are advantages of hex?
Easier and faster to write 2 digits than the full binary sequence
Easier for a human to process than binary
Where is hex used?
Machine code
Assembly
HTML colours
MAC addresses
What is the RGB scale?
The RGB scale is 0-255
What is a MAC address?
A MAC address uniquely identifies a networked device
How many bits is a MAC address?
48 bits shown as 6 groups of 2 hex digits
How are MAC addresses structured?
The first 6 hex digits identify the device manufacturer
The second 6 hex digits identify the device serial number
What is an overflow error?
An overflow error is when a binary number is carried past the last place column during binary addition
How do you multiply or divide in binary?
You perform a binary shift where every number is shifted a set number of places
What are problems with binary shifting?
Data shifting off the left can cause an overflow error
Data shifting off the right can cause a loss of accuracy
What is a character set?
A collection of all of the characters that a computer recognises, along with their binary codes