Which of the following best describes an absolute file path?
Think about how you would tell someone exactly where a file is on your computer starting from the main folder.
An absolute path always starts from the root directory (like C:\\ on Windows or / on Unix) and shows the full route to the file. Relative paths start from the current folder.
Given the following commands executed in order, how many files and folders exist in the directory /home/user at the end?
mkdir projects cd projects touch report.txt mkdir images touch images/photo.png cd .. touch notes.txt
Trace each command step-by-step and count files and folders inside /home/user.
Inside /home/user, there is the folder projects and the file notes.txt. Inside projects, there is report.txt and the folder images which contains photo.png. So total files: report.txt, photo.png, notes.txt (3 files). Total folders: projects, images (2 folders).
Consider a file with permissions shown as -rwxr-x--x. Which statement correctly describes who can write to this file?
Look at the 'w' characters in the permission string and remember the order: owner, group, others.
The permission string -rwxr-x--x breaks down as: owner (rwx) has read, write, execute; group (r-x) has read and execute but no write; others (--x) have only execute. So only the owner can write.
Which of the following is a key difference between FAT32 and NTFS file systems?
Think about file size limits and security features in modern file systems.
NTFS supports large files and advanced features like permissions and encryption. FAT32 has a 4GB file size limit and lacks security features.
You want to design a backup strategy that keeps daily snapshots of your important files but only stores changes to save space. Which file system feature or tool would best support this?
Consider which technology allows saving only changes between backups efficiently.
Incremental backups with snapshot support (like ZFS or Btrfs) save only changes, reducing storage needs. Journaling logs changes for recovery but doesn't save snapshots. FAT32 lacks advanced features. RAID 0 improves speed but offers no backup.