a) Describe the characteristics of a CSV file.
Question
b) A given CSV file contains three values in each line in the file. Use pseudocode to design a program which searches sequentially through the file reading one row/record at a time for a particular value in the first field. If the value matches the search value, it adds 1 to a running total. The running total is output when all rows/records have been read and searched.
Leave an answer