File Systems Flashcards
What is a file system?
A file system is a method and data structure that an operating system uses to manage files on a disk.
True or False: A file system only manages the storage of data.
False: A file system also manages metadata and provides access to files.
Fill in the blank: The __________ file system is commonly used in Unix and Linux operating systems.
ext
What does FAT stand for in file systems?
File Allocation Table
Which file system is known for its journaling capability?
NTFS (New Technology File System)
True or False: Simple file systems do not support complex data structures.
True
What is the main characteristic of a simple file system?
It uses a flat structure with minimal overhead and complexity.
Multiple Choice: Which of the following is a feature of simple file systems? A) Security features B) Advanced caching C) Minimal metadata D) Complex permissions
C) Minimal metadata
What is the purpose of metadata in a file system?
Metadata provides information about files such as size, type, and creation date.
Fill in the blank: In a simple file system, files are usually stored in __________.
a single directory
What does the term ‘mounting’ refer to in file systems?
The process of making a file system accessible at a certain point in the directory structure.
True or False: Simple file systems typically support multiple users.
False
What is the typical maximum file size limitation in FAT32 file systems?
4 GB
Multiple Choice: Which of the following is NOT a simple file system? A) FAT16 B) NTFS C) ext2 D) FAT32
B) NTFS
What is the role of a file descriptor?
A file descriptor is an integer that uniquely identifies an open file in a file system.
Fill in the blank: The __________ file system is designed for flash storage and is optimized for performance.
exFAT
What is a key advantage of using a simple file system?
Simplicity and ease of implementation.
True or False: Simple file systems are often used in embedded systems.
True
What is a limitation of simple file systems regarding file organization?
Limited support for hierarchical organization of files.
Multiple Choice: Which of the following file systems is specifically designed for small devices? A) ext4 B) exFAT C) NTFS D) ZFS
B) exFAT
What does the term ‘fragmentation’ refer to in file systems?
Fragmentation occurs when files are stored non-contiguously on a disk, leading to inefficient use of space.
Fill in the blank: In a simple file system, operations like read and write are typically __________.
sequential
What is the significance of the root directory?
The root directory is the top-level directory in a file system hierarchy.
True or False: Simple file systems usually implement access control mechanisms.
False