Chapter 1. Information Representation Flashcards
1
Q
What are binary magnitudes and prefixes?
A
- Binary magnitudes refer to the size of binary numbers.
- Binary prefixes: kibi (Ki), mebi (Mi), gibi (Gi), tebi (Ti).
- Decimal prefixes: kilo (k), mega (M), giga (G), tera (T).
2
Q
How do you convert between different number bases?
A
- Use binary, denary, hexadecimal bases.
- Convert by grouping digits and translating based on base values.
3
Q
What is Binary Coded Decimal (BCD)?
A
- BCD represents each decimal digit separately in binary.
- Used in digital clocks and calculators.
4
Q
What is the purpose of hexadecimal in computing?
A
- Simplifies representation of binary numbers.
- Used in color codes and memory addresses.
5
Q
How does binary addition work?
A
- Add corresponding bits with carry.
- Example: 1 + 1 = 10 (carry 1).
6
Q
What is overflow in binary arithmetic?
A
- Occurs when a calculation exceeds the allocated number of bits.
- Example: Adding two large binary numbers may result in an overflow.
7
Q
What are the characteristics of bitmapped images?
A
- Composed of pixels, each with a color value.
- Quality depends on resolution and color depth.
8
Q
What affects the file size of a bitmapped image?
A
- Image resolution (pixels per inch).
- Color depth (bits per pixel).
9
Q
How is sound represented digitally?
A
- Sound is sampled at regular intervals.
- Each sample is converted to a binary value.
10
Q
What is the difference between lossy and lossless compression?
A
- Lossy: Reduces file size by removing some data (e.g., JPEG).
- Lossless: Compresses without data loss (e.g., PNG).
11
Q
What is run-length encoding (RLE)?
A
- A simple form of lossless compression.
- Encodes sequences of repeated characters or pixels.
12
Q
How are vector graphics encoded?
A
- Use geometric shapes and formulas.
- Suitable for images that require scaling.
13
Q
What are the benefits of using vector graphics?
A
- Maintain quality when resized.
- Smaller file size for simple images.
14
Q
How does changing the sampling rate affect sound quality?
A
- Higher sampling rate captures more detail.
- Increases file size.
15
Q
Explain the need for compression in multimedia.
A
- Reduces file size to save storage space and bandwidth.
- Makes file transmission faster.