What type of file system structure records modifications to a storage drive in a dedicated log file before committing changes to track data corruption against crashes? MCQ with Answer and Explanation

What type of file system structure records modifications to a storage drive in a dedicated log file before committing changes to track data corruption against crashes?
A. FAT32 File System
B. Compressed Allocation Mapping
C. Journaling File System
D. Volatile Ramdisk Layout
Answer: Option C
Solution (By JKExamLibrary)
Journaling file systems (like NTFS or ext4) track pending file changes in a dedicated journal log, allowing rapid structural recovery in the event of an abrupt power failure.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
In Android, which component allows an app to run in the background even when the user is not interacting with it?
A. Broadcast Receiver
B. Content Provider
C. Activity
D. Service

Correct Answer: Option D


Explanation:
Services are designed for background operations without a UI, like playing music or downloading files.

This question belongs to: Computer Operating Systems
Question #2 Report Error
In a multiprocessor system, what is NUMA?
A. Non-Uniform Memory Access, where memory access times vary based on the processor's location
B. Network Unified Memory Architecture
C. Non-Universal Memory Architecture
D. New Unified Memory Access

Correct Answer: Option A


Explanation:
NUMA is a memory architecture where each processor has local memory, but accessing remote memory takes longer, affecting performance.

This question belongs to: Computer Operating Systems
Question #3 Report Error
What is the purpose of the Android 'DevicePolicyManager'?
A. To wipe device data
B. To enforce device security policies (like password, encryption) for enterprise
C. To manage app policies
D. To control device settings

Correct Answer: Option B


Explanation:
DevicePolicyManager is used for enterprise management to set policies such as password requirements, lock screen, and data wipe.

This question belongs to: Computer Operating Systems