Which of the following file extensions is most commonly associated with a plain text file that can be opened by most text editors?
Think about the file type that contains only readable characters without special formatting.
The .txt extension is used for plain text files. These files contain only text and can be opened by any text editor. Other options like .exe are executable files, .jpg are image files, and .mp3 are audio files.
When you double-click a file named report.pdf on your computer, which program is most likely to open it by default?
Consider the program designed specifically to open files with the .pdf extension.
Files with the .pdf extension are Portable Document Format files. They are usually opened by PDF reader applications like Adobe Acrobat Reader. While some web browsers can open PDFs, the default association is typically a PDF reader.
You have a file without an extension. Its first four bytes in hexadecimal are 50 4B 03 04. Which file type does this signature most likely indicate?
These bytes are known as a 'magic number' that identifies compressed archive files.
The bytes 50 4B 03 04 correspond to the ASCII characters 'PK' followed by two bytes. This is the signature for ZIP archive files. Many compressed file formats like DOCX and XLSX also use ZIP internally.
Which statement best describes how file associations differ between Windows and macOS?
Think about how macOS hides file extensions by default but still opens files correctly.
Windows primarily uses file extensions (like .txt, .exe) to associate files with programs. macOS uses a combination of file metadata (called 'type codes' and 'creator codes') and file extensions. This allows macOS to open files correctly even if extensions are hidden or missing.
A computer system supports the following file types with their default associations:
- .docx → Word processor
- .xlsx → Spreadsheet
- .pptx → Presentation
- .jpg → Image viewer
- .png → Image viewer
- .mp4 → Video player
- .mp3 → Audio player
- .txt → Text editor
How many unique default programs are associated with these file types?
Count how many different programs appear in the list, not the number of file types.
There are 8 file types listed but some share the same default program:
- Word processor (1): .docx
- Spreadsheet (2): .xlsx
- Presentation (3): .pptx
- Image viewer (4): .jpg, .png
- Video player (5): .mp4
- Audio player (6): .mp3
- Text editor (7): .txt
Counting unique programs: Word processor, Spreadsheet, Presentation, Image viewer, Video player, Audio player, Text editor = 7 unique programs.
However, the question asks for unique default programs associated with these file types. The list shows 7 unique programs, so the correct answer is 7.