CBSE Class 12 Computer Science Question 8 of 136

Data File Handling — Question 8

Back to all questions
8
Question

Question 8

Assertion (A): CSV (Comma Separated Values) is a file format for data storage which looks like a text file.

Reasoning (R): In CSV file, the information is organized with one record on each line and each field is separate by comma.

  1. Both A and R are true and R is the correct explanation of A.
  2. Both A and R are true but R is not the correct explanation of A.
  3. A is true but R is false.
  4. A is false but R is true.
Answer

Both A and R are true and R is the correct explanation of A.

Explanation
CSV (Comma Separated Values) is indeed a file format for data storage that resembles a text file. CSV files are plain text files that typically use the .csv extension and contain tabular data organized into rows and columns. The information in CSV files is organized with one record (or row) on each line, and each field (or column) within a record is separated by a comma.