Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Data is often classified as structured, semi-structured, or unstructured. Multimedia (audio, images, video, PDFs) typically does not conform to rigid relational schemas for its internal content. This question asks whether such content is commonly labeled unstructured data.
Given Data / Assumptions:
Concept / Approach:
In practice, organizations call media files unstructured because they require specialized tooling to extract meaning (for example, computer vision for images, speech-to-text for audio). Even when stored in BLOBs or object storage, the DBMS treats them as opaque streams. Metadata can be structured (tags, length, author), but the primary content remains non-tabular, supporting the “unstructured” label in everyday usage.
Step-by-Step Solution:
Verification / Alternative check:
Compare how BI tools treat media: they rely on tags and derived features, not direct columnar scans of the media bytes.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing file format structure with analytical structure; assuming metadata alone makes content “structured.”
Final Answer:
Correct
Discussion & Comments