Objective: Compute the total number of viewers (across A, B, C, D, E) who watch < 1 movie per week.
Given (from the table):
• Column I = % of viewers watching < 1 movie/week in that city.
• Column II = absolute number of viewers watching ≥ 1 movie/week in that city.
Let each city’s total viewers be Tcity. Then:
• % ≥ 1 movie/week = (100 − Column I).
• So (100 − Column I)% of Tcity = Column II ⇒ Tcity = Column II ÷ ((100 − Column I)/100).
• Viewers < 1 movie/week = Column I% of Tcity.
Quick direct formula (for each city):
Viewers < 1 per week = (Column I / (100 − Column I)) × Column II.
City-wise calculations:
A: I = 60%, II = 2400 ⇒ TA = 2400 ÷ 0.40 = 6000 ⇒ < 1 = 0.60 × 6000 = 3600.
B: I = 20%, II = 3000 ⇒ TB = 3000 ÷ 0.80 = 3750 ⇒ < 1 = 0.20 × 3750 = 750.
C: I = 85%, II = 2400 ⇒ TC = 2400 ÷ 0.15 = 16000 ⇒ < 1 = 0.85 × 16000 = 13600.
D: I = 55%, II = 2700 ⇒ TD = 2700 ÷ 0.45 = 6000 ⇒ < 1 = 0.55 × 6000 = 3300.
E: I = 75%, II = 8000 ⇒ TE = 8000 ÷ 0.25 = 32000 ⇒ < 1 = 0.75 × 32000 = 24000.
Summation across all five cities:
Total (< 1 per week) = A + B + C + D + E
= 3600 + 750 + 13600 + 3300 + 24000
= (3600 + 750) = 4350
= 4350 + 13600 = 17950
= 17950 + 3300 = 21250
= 21250 + 24000 = 45250.
Final Answer: 45250 viewers watch < 1 movie per week across the five cities. (Matches Option D)