1.1 Describe ways to represent data
1.You are designing a solution to store medical imaging files (X-rays and MRI scans) and patient doctors' notes in PDF format. How is this type of data classified?
- A.Structured
- B.Semi-structured
- C.Unstructured
- D.Relational
Show answer & explanation
Correct answer: C — Unstructured
- A. Incorrect. Structured data conforms to a strict, predefined schema, typically organized in a tabular format with rows and columns, like in a relational database. Medical imaging files and PDFs do not fit this classification as they lack a fixed schema for their content.
- B. Incorrect. Semi-structured data does not have a rigid schema but contains organizational properties like tags or keys that make it self-describing, such as JSON or XML files. While image files and PDFs may contain metadata, their core content (image pixels, text, and layout) does not have this inherent self-describing structure.
- C. Correct. Unstructured data lacks any predefined data model or schema. This category includes binary files such as images (X-rays, MRI scans), videos, audio files, and documents like PDFs. This type of data is often stored in data lakes or object/blob storage.
- D. Incorrect. Relational data is a specific type of structured data that is organized into tables with defined schemas and relationships between them. This model is not suitable for storing and classifying raw binary files like images or PDFs, even though a relational database might store a pointer to such a file or the file itself as a BLOB (Binary Large Object).