193k views
2 votes
Which file format contains human-readable data where the column values are separated by a comma?

A) XML
B) JSON
C) CSV
D) AVRO

1 Answer

2 votes

Final answer:

The file format that contains human-readable data where the column values are separated by a comma is the CSV (Comma-Separated Values) format.

Step-by-step explanation:

The file format that contains human-readable data where the column values are separated by a comma is the CSV (Comma-Separated Values) format.

In a CSV file, each line represents a row of data, and the values within each row are separated by commas. This format is commonly used for storing and exchanging tabular data, such as spreadsheets or databases.

For example, a CSV file representing a list of students might look like this:

  • John Doe,16,Male
  • Jane Smith,17,Female
  • Mark Johnson,15,Male
User Ricardo Gaefke
by
7.7k points