Data representation Flashcards
(37 cards)
What is binary?
Representing numbers using base 2 (0s & 1s) – the only language that computers truly understand. 0 means off, 1 means on.
What is denary?
Representing numbers using base 10 (0‐9) – these are our normal numbers that we use every day.
What is hexadecimal?
Representing numbers using base 16 (0‐9 & A‐F). This language is never stored inside a computer, it is used for representing colours as it is easier for humans to interpret.
What is binary addition?
Adding binary numbers together.
What is a character?
A single letter, number or symbol (e.g., A, 1, !).
What does ASCII stand for?
American Standard Code for Information Interchange.
How many bits does ASCII use?
Uses 7 bits to store a maximum of 128 characters.
What is Extended ASCII?
The same as ASCII, though uses 8 bits per character to represent 256 characters.
What is Unicode?
A different form of character representation in a computer system, using 16 bits per character to allow 65,536 characters to be represented.
What is an image in computing?
A picture that has been created or copied and stored in electronic form.
What are pixels?
The individual units (dots) that make up an image.
What is resolution in images?
The level of detail in an image (quality), measured in dots per inch (dpi).
What is bit depth?
The number of binary digits used to represent each pixel in an image file.
What is sampling?
Method of converting an analogue sound signal into a digital file containing binary numbers.
What is sample rate?
The number of readings taken from a sound wave each second.
What is compression?
The re‐encoding of data so that less bits are used to store it.
What is lossy compression?
Removes data to reduce the size of a file (e.g., JPG).
What is lossless compression?
Reorganises data to reduce the size of a file without removing any information (e.g., ZIP). No quality is lost.
What are the binary place values for 1 byte?
- 128
- 64
- 32
- 16
- 8
- 4
- 2
- 1
What are the binary place values for 1 nibble?
- 8
- 4
- 2
- 1
What are the hexadecimal numbers from 0 to 15?
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- A
- B
- C
- D
- E
- F
What are the rules of binary addition for 0 + 0?
0
What are the rules of binary addition for 1 + 0?
1
What are the rules of binary addition for 0 + 1?
1