Fundamentals of Data Representation Flashcards
How many characters can be represented using a byte.
256
How many bits in a nibble?
4
What is unicode?
A character set that can universally be used to encode text.
It requires much more space.
How is a parity bit used for ASCII characters.
Normal ASCII characters do not make use of the most significant bit in a byte, which computers use to submit data.
For an even parity, the number of 1s being transmitted must be even, including the parity bit.
For an odd parity, the number of 1s being transmitted must be odd, including the parity bit.
How does majority voting work?
Binary digits are transmitted multiple times. If they don’t all match, it is assumed the bit which occurs most frequently is the correct bit.
How do check digits work?
It is added to a string of numbers, and it is calculated using the other numbers in the string. When the number is entered, an algorithm will calculate the check digit, and only if it matches, the entry will be considered valid.
How do checksums work?
It is a mathematical algorithm applied to a block of data. The checksum is calculated and then transmitted along with the data. The same algorithm is applied on the other end and if the checksum matches, the data is considered to be transmitted correctly.
How is an image stored as a bitmap?
Single, discrete pixels of colour.
How is an image stored as a vector?