0
0
Intro to Computingfundamentals~20 mins

File system management in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
File System Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding File Paths

Which of the following best describes an absolute file path?

AA path that only contains the file name without any folder information.
BA path that starts from the current directory and uses shortcuts like '..' to move up folders.
CA path that starts from the root directory and specifies the full location of a file.
DA path that uses environment variables to locate files dynamically.
Attempts:
2 left
💡 Hint

Think about how you would tell someone exactly where a file is on your computer starting from the main folder.

trace
intermediate
2:00remaining
File Creation and Directory Structure

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
A3 files and 2 folders
B3 files and 1 folder
C2 files and 2 folders
D4 files and 1 folder
Attempts:
2 left
💡 Hint

Trace each command step-by-step and count files and folders inside /home/user.

identification
advanced
2:00remaining
File Permission Interpretation

Consider a file with permissions shown as -rwxr-x--x. Which statement correctly describes who can write to this file?

AOnly the owner can write to the file.
BEveryone can write to the file.
CThe owner and group members can write to the file.
DNo one can write to the file.
Attempts:
2 left
💡 Hint

Look at the 'w' characters in the permission string and remember the order: owner, group, others.

Comparison
advanced
2:00remaining
Comparing File System Types

Which of the following is a key difference between FAT32 and NTFS file systems?

AFAT32 supports file permissions and encryption, NTFS does not.
BNTFS cannot be used on external drives, FAT32 can.
CFAT32 is used only on Linux, NTFS only on Windows.
DNTFS supports larger file sizes and file permissions, FAT32 has size limits and no permissions.
Attempts:
2 left
💡 Hint

Think about file size limits and security features in modern file systems.

🚀 Application
expert
3:00remaining
File Backup Strategy Design

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?

AUsing a file system with journaling to log changes.
BUsing incremental backups with snapshot support like in ZFS or Btrfs.
CUsing FAT32 file system for compatibility with all devices.
DUsing a RAID 0 array to increase speed.
Attempts:
2 left
💡 Hint

Consider which technology allows saving only changes between backups efficiently.