AI-102 · Question #129
You have data saved in the following format. Which format was used?
The correct answer is A. CSV. The data format shown is CSV (Comma Separated Values), characterized by plain text values separated by commas, often with a header row.
Question
Options
- ACSV
- BJSON
- CHTML
- DYAML
How the community answered
(43 responses)- A95% (41)
- C2% (1)
- D2% (1)
Why each option
The data format shown is CSV (Comma Separated Values), characterized by plain text values separated by commas, often with a header row.
CSV (Comma Separated Values) format stores tabular data in plain text, where each line represents a data record and fields within a record are separated by commas.
JSON (JavaScript Object Notation) format organizes data as attribute-value pairs and ordered lists of values, typically enclosed in braces {} and brackets [].
HTML (Hypertext Markup Language) is used for structuring content on the web, consisting of tags and elements to define web pages, not typically for raw data storage in a simple tabular format.
YAML (YAML Ain't Markup Language) is a human-friendly data serialization standard, often used for configuration files, which uses indentation and colons to represent data structures.
Concept tested: Data file formats (CSV)
Topics
Community Discussion
No community discussion yet for this question.