CSS Computer Science (Optional) — Paper-I, Section-A, Topic I, p.40. Covers: Working With Computer Documents.
What Is a Computer Document
A computer document is any file created and saved by an application — a text document, spreadsheet, presentation, image, and so on.
Key Concepts
- File formats: determine how data is structured internally and which applications can correctly open/edit it.
.docx (Word document): stores formatted text, images, and layout for word processing; editable and widely used for drafting/collaborating on text documents; can lose formatting if opened in an incompatible older program.
.xlsx (Excel workbook): stores tabular data, formulas, and charts in rows/columns/sheets; used for calculations, data analysis, and record-keeping; formulas can break if opened in software that doesn't support the same functions.
.pdf (Portable Document Format): stores a fixed, print-ready layout of text/images that displays identically on any device/software; ideal for final document sharing since formatting cannot shift, but it is not easily editable without special tools.
.pptx (PowerPoint presentation): stores slides containing text, images, animations, and transitions for presentations; suited to visual, slide-by-slide delivery of information rather than dense text.
- Creating, saving, and versioning: documents are created in an application, saved to storage (local or cloud) under a filename/extension, and can have multiple saved versions over time
- File management: organizing, naming, and safeguarding documents so they remain easy to find and recover.
- Folder/directory organization: grouping related documents together (by project, date, or type) so files can be located quickly rather than searched for individually.
- Consistent naming conventions: using clear, predictable filenames (e.g., including dates or version numbers) so files are identifiable without opening them.
- Regular backups: keeping duplicate copies (local or cloud) so documents can be recovered after accidental deletion, corruption, or hardware failure.
- Compatibility: opening a document in software that doesn't fully support its format can cause formatting loss — a practical reason standard formats (like
.pdf for final sharing) are preferred for cross-platform exchange
MCQ Traps
- A file extension (e.g.,
.docx) indicates the file's format/type, not just its name — changing the extension does not convert the file's actual content.
- PDF is generally preferred for final document sharing because it preserves formatting consistently across different devices/software, unlike editable formats like
.docx.
Self-Test Questions
- What is the purpose of a file extension?
- Why is PDF often preferred over
.docx for sharing a finished document?
- Name two good practices for managing computer documents.
- Compare
.docx and .xlsx in terms of the type of data each is designed to hold.
- Why might a spreadsheet's formulas break when opened in a different application than the one it was created in?