Which of the following commands puts the lines of the file data.csv into alphabetical order?
Which of the following commands puts the lines of the file data.csv into alphabetical order?
The 'sort' command is used in Unix and Unix-like operating systems to arrange the lines of a text file in alphabetical or numerical order. Therefore, using 'sort data.csv' would put the lines of the file data.csv into alphabetical order.
B is the correct answer