🎓 BookMCQ
← Back to 28. Multimedia

📝 Types of multimedia data in computer networks (7 MCQs)

📖 From Data Communication and Networks • 28. Multimedia • 7 questions available

What is Types of multimedia data in computer networks?

Types of multimedia data in computer networks include discrete media such as text and still images that are independent of time, and continuous media such as audio and video that are time-dependent and require strict synchronization, specific bandwidth, and low latency to maintain acceptable playback quality during transmission.

2
Easy
3
Medium
2
Hard

📝 All Types of multimedia data in computer networks MCQs

Q1. Which character set is most widely used to represent symbols in textual data on the Internet?

A.ASCII
B.Unicode ✅
C.ISO‑8859‑1
D.UTF‑16
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: Unicode provides a universal mapping of characters from virtually all writing systems, allowing consistent representation across platforms. While ASCII covers only basic English characters, Unicode includes them and many more, making it the standard choice for Internet text storage and exchange.

Q2. A lossless compression algorithm reduces a text file to 60 % of its original size. If, after decompression, some bits are altered, which of the following outcomes is most likely?

A.The original information is corrupted, violating the lossless guarantee. ✅
B.The file will be smaller but still fully usable.
C.Decompression will be faster due to fewer bits.
D.The altered bits will be automatically corrected by the algorithm.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Lossless methods guarantee that decompression reproduces exactly the original bit sequence. Any alteration means the integrity of the data is compromised, which defeats the purpose of lossless compression. Consequently the recovered file no longer matches the source, leading to corrupted information.

Q3. Consider two images of the same dimensions: Image X is a black‑and‑white fax page (bit depth = 1) and Image Y is a grayscale photograph (bit depth = 8). Which statement correctly compares their storage requirements?

A.Image X requires eight times more storage than Image Y.
B.Image Y requires twice the storage of Image X.
C.Both images require identical storage because dimensions dominate.
D.Image Y requires eight times more storage than Image X. ✅
💡 Difficulty: medium | ✅ Correct: D

📖 Explanation: Storage size is proportional to bit depth. With the same pixel count, a grayscale image using 8 bits per pixel stores eight times as many bits as a 1‑bit black‑and‑white image. Therefore Image Y needs roughly eight times the storage of Image X.

Q4. A digital image has a resolution of 1920 × 1080 pixels and uses a 24‑bit color depth. Using the formula size (bytes)=width×height×bit depth8\text{size (bytes)} = \frac{\text{width} \times \text{height} \times \text{bit depth}}{8}, what is the approximate storage size in megabytes (MB) for the uncompressed image? (1 MB = 2202^{20} bytes)

A.4.9 MB
B.5.9 MB ✅
C.6.2 MB
D.7.1 MB
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: Multiplying width (1920) by height (1080) gives 2,073,600 pixels. Multiplying by 24 bits yields 49,766,400 bits. Dividing by 8 converts to 6,220,800 bytes. Dividing by 1,048,576 bytes per MB gives about 5.94 MB, which rounds to 5.9 MB.

Q5. Plaintext presents text linearly, while hypertext allows nonlinear navigation. Which of the following best illustrates a direct consequence of using hypertext instead of plaintext?

A.Users can follow embedded links to jump to related sections. ✅
B.Text must be stored using a fixed‑width font.
C.The file size always doubles compared to plaintext.
D.Compression becomes impossible.
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: Hypertext embeds hyperlinks within the document, enabling readers to jump to other parts of the same document or external resources instantly. This non‑sequential navigation is the hallmark difference from plain linear text, where reading proceeds strictly from start to finish.

Q6. When streaming video, choosing a 24‑bit color depth versus an 8‑bit palette impacts bandwidth. Which statement accurately reflects this trade‑off?

A.Reducing color depth from 24‑bit to 8‑bit cuts required bandwidth by roughly three‑quarters, at the cost of noticeable color banding. ✅
B.Increasing color depth from 8‑bit to 24‑bit reduces bandwidth because larger colors compress better.
C.Both depths require identical bandwidth because compression algorithms equalize size.
D.Using 8‑bit color depth eliminates the need for audio synchronization.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: Bandwidth scales with the amount of data transmitted per frame. An 8‑bit palette uses one‑quarter the bits of a 24‑bit representation, reducing the raw data rate by about 75 %. However, the limited color range often introduces banding artifacts, illustrating the quality‑vs‑bandwidth trade‑off.

Q7. An archive contains text, grayscale images, and audio clips. To preserve all original information while minimizing total storage, which combination of compression methods should be employed?

A.Lossless text compression, lossy JPEG for images, lossy MP3 for audio.
B.Lossless text compression, lossless PNG for images, lossless FLAC for audio. ✅
C.Lossy text compression, lossless PNG for images, lossy AAC for audio.
D.Lossless text compression, lossy JPEG for images, lossless WAV for audio.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: Text must remain exact, so lossless compression (e.g., Huffman or LZW) is required. Grayscale images can be stored losslessly with PNG, preserving pixel values. Audio should also be losslessly compressed using FLAC to retain fidelity. This combination ensures no information is lost while reducing size.

🔗 Related Topics (MCQs)