Difficulty: Medium
Correct Answer: 92,000 kb/s
Explanation:
Introduction / Context:
Pulse Code Modulation (PCM) digitizes an analog baseband by sampling at or above twice its highest frequency component and quantizing each sample to a fixed number of bits. Determining the raw bitrate helps appreciate why video compression is necessary in practice.
Given Data / Assumptions:
Concept / Approach:
For baseband PCM, the minimum sampling rate is f_s = 2 * B. The raw bit rate R is then R = f_s * bits_per_sample. Unit conversion from bits per second to kilobits per second is straightforward (divide by 10^3).
Step-by-Step Solution:
Compute sampling rate: f_s = 2 * 4.6 * 10^6 = 9.2 * 10^6 samples/s.Multiply by quantization: R = 9.2 * 10^6 * 10 = 92 * 10^6 bits/s.Convert to kb/s: 92 * 10^6 / 10^3 = 92,000 kb/s.
Verification / Alternative check:
Order-of-magnitude sanity check: several tens of megabits per second are expected for raw uncompressed video; 92 Mb/s is consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
92,000 kb/s
Discussion & Comments