Data Representation/Structures Glossary Flashcards
Array
Data structure that holds a sort of list of similar data that are the same data type.
ASCII
Character encoding standard for electronic communication.
Binary
It’s a number system based in base 2. Computers can use this to work, by 0 being an off electric signal, and 1 is an on electric signal.
Bit
A signal binary number representing 2 possible values.
Bit Depth
The number of bits used to calculate one pixels colour in an image.
Bitmap
Raw uncompressed bit data that translates to an image.
Compression
A method to lower the size of a file.
Data Type
What type of data is a variable, and how it can be used in logical calculations without causing an error.
Floating Point
A data type that can represent decimal numbers or in other words numbers with a fractional part.
Matrix
Data structure in which a grid of numbers is stored.
Queue
A data structure which is an array where the first index is the item that has been in the array the longest and last index is the newest item in that array. (First in, First out)
Stack
A data type which is an array but items that are pushed into the array get popped of the array first. (Last in, first out)
Record
Like an array, where you store closely related data, but is not limited to one data type.
Set
Like an array, but can only hold unique values.
Resolution
The quality of an image or video. It’s how many pixels are used in the width and height.