Fundamentals of Data Representation Flashcards
How does the bit pattern indicate that a number is normalised?
The 2 starting bits are either, 10 or 01.
What are the advantages of using normalised floating point form?
- Maximises precision/accuracy for a given number of bits.
- Offers a unique representation of each number.
What is the smallest negative and largest positive value possible on a twos complement floating point number?
Negative: Positive:
- ..… Mantissa 01111…… Mantissa
- ..… Exponent 01111…… Exponent
What is the largest negative and smallest positive value possible on a twos complement floating point number?
Negative: Positive:
- ..… Mantissa 000……1 Mantissa
- ..… Exponent 100…… Exponent
Explain why the relative error is usually considered to be a more important measure of error than the absolute error.
The impact of an error depends on its size relative to the number that is represented
(the error is more significant the smaller the represented number becomes)
Why do vector graphics use less storage than bitmapped graphics?
- Vector graphics use less storage as they don’t need to store the colour of each pixel
- Vector graphics store information about / properties of the objects that an image is composed of - It takes only a small amount of memory to store the properties of an object
- A single object might be equivalent to many pixels
What are the advantages of vector graphics vs bitmapped graphics?
- Individual parts of the image can be edited independently
- Fewer bytes are used to represent an image
- If an object is deleted, the software knows what is behind it (no “hole” is left in the image)