0
0
Excelspreadsheet~20 mins

Saving and file formats (xlsx, csv) in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
File Format Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding CSV file format
Which of the following statements about CSV files is correct?
ACSV files can store multiple sheets in one file.
BCSV files preserve cell formatting like colors and fonts.
CCSV files save data as plain text separated by commas.
DCSV files are saved in a binary format.
Attempts:
2 left
💡 Hint
Think about how CSV files store data compared to Excel files.
📊 Formula Result
intermediate
1:30remaining
Effect of saving Excel file as CSV on formulas
You have a formula =A1+B1 in cell C1. You save the file as CSV and then reopen it. What will be the value in cell C1?
AThe cell shows the last calculated value before saving.
BThe formula <code>=A1+B1</code> remains and recalculates.
CThe cell is empty because formulas are not saved in CSV.
DThe cell shows an error like <code>#NAME?</code>.
Attempts:
2 left
💡 Hint
Remember what CSV files save: values or formulas?
Function Choice
advanced
1:30remaining
Choosing the right save format for preserving formulas and multiple sheets
You want to save your Excel workbook so that all formulas and multiple sheets are preserved. Which file format should you choose?
ACSV (.csv)
BXML Data (.xml)
CText (Tab delimited) (.txt)
DExcel Workbook (.xlsx)
Attempts:
2 left
💡 Hint
Think about which format Excel uses to save full workbooks.
🎯 Scenario
advanced
1:30remaining
Data loss scenario when saving as CSV
You have a sheet with dates formatted as MM/DD/YYYY and some cells with formulas. You save the file as CSV and reopen it. What problem might you see?
ADates and formulas are preserved exactly as before.
BDates may appear as numbers and formulas are lost.
COnly formulas are preserved, but dates are lost.
DThe file will not open because CSV cannot save dates.
Attempts:
2 left
💡 Hint
Consider what CSV files save and how Excel handles dates.
data_analysis
expert
2:00remaining
Comparing file sizes between XLSX and CSV
You have a large Excel file with 10,000 rows and 10 columns of data with formulas and formatting. You save it as XLSX and as CSV. Which statement about file sizes is true?
ACSV file is usually smaller because it saves only plain text data.
BCSV file is usually larger because it saves formulas and formatting.
CXLSX file is usually smaller because it compresses data and formatting.
DBoth files have the same size because they contain the same data.
Attempts:
2 left
💡 Hint
Think about what data each format saves and how compression works.