Concept:A .csv file is a universal plain-text format that can be read by virtually every spreadsheet application available today.
Explanation:In a CSV file, each line represents one row of data, and commas are used to separate the columns within each row.
Because it stores only raw text without any proprietary formatting, it is compatible with MS Excel, Google Sheets, LibreOffice Calc, Apple Numbers, and all other spreadsheet software.
This makes CSV the best choice when you need to save a workbook for maximum cross-platform data exchange.
The other options are not fully suitable:
PDF (.pdf) is designed for viewing and printing static reports, not for editing or transferring spreadsheet data.
XLSX (.xlsx) is Microsoft's default XML-based format, which may lose some features or render differently when opened in non-Microsoft programs.
XLSB (.xlsb) is a binary format primarily supported only by Microsoft Excel, so it offers poor compatibility with other software.
Thus, CSV ensures seamless compatibility with all spreadsheet programs.
Answer:Option D: Comma-separated values (.csv)