Computer Knowledge
Computer File Systems
1,249 Questions
Computer file systems dictate how data is stored, organized, and retrieved on storage devices. Important concepts include file allocation tables, access mechanisms, and various formats like sequential and video files. Candidates preparing for banking and government exams should practice these fundamentals thoroughly.
File access mechanismsVideo and password filesFile extensionsFile allocation tableSystem metadata
Computer File Systems Questions
A
Correct answer
Explanation
F3 is the standard keyboard shortcut to open the Search/Find dialog in Windows Explorer and most file managers. F1 opens Help, F9/F8 have various uses depending on context (F9 refreshes in some applications). The Find Files function is essential for locating documents and is tested in basic computer literacy exams.
-
audio video interleave
-
automated video interleave
-
audio video interface
-
automated video interface
A
Correct answer
Explanation
AVI stands for Audio Video Interleave, a multimedia container format introduced by Microsoft. The key elements are "Audio" and "Video" - both words appear correctly, and "interleave" means they're mixed together. It's not "automated" or an "interface".
-
Digital Audio Transfer
-
DATA Audio transfer
-
DATA Acquired Teleface
-
DATA File
-
Memory Stack Voice files
-
Media Stick Voice files
-
Motion Stick Voice files
-
Memory Stick Voice files
D
Correct answer
Explanation
MSV stands for Memory Stick Voice, a proprietary audio format developed by Sony for their voice recorders. It's specifically designed for storing voice recordings on Sony's Memory Stick flash storage media.
-
win media video
-
windows mediaplayer video
-
winrar media video
-
windows media video
D
Correct answer
Explanation
WMV stands for Windows Media Video, a video compression format developed by Microsoft. It's part of the Windows Media framework and is commonly used for storing and streaming video content on Windows-based systems.
-
File name
-
program
-
record
-
data
A
Correct answer
Explanation
A filename is the name assigned by a user to identify a file in a file system. Programs, records, and data are different concepts - a program is executable code, a record is a data structure, and data is the content itself.
-
My Folder
-
My Files
-
MyText
-
My Documents
D
Correct answer
Explanation
My Documents is the standard Windows folder for storing personal files and documents. My Folder, My Files, and MyText are not default Windows system folders for personal document storage.
-
Folder on desktop
-
File on a desktop
-
Folder in my computer
-
File in my computer
A
Correct answer
Explanation
The Recycle Bin is a special folder on the Windows desktop that temporarily stores deleted files before they are permanently removed. It is not a file itself, but rather a container that holds deleted items. This design allows users to recover accidentally deleted files if needed.
-
Mini Directory
-
Junior Directory
-
Part Directory
-
Sub Directory
D
Correct answer
Explanation
A subdirectory (or subfolder) is a directory nested within another directory in the file system hierarchy. 'Mini Directory,' 'Junior Directory,' and 'Part Directory' are not standard terms - the correct terminology is 'Sub Directory' or 'subfolder.'
-
Lists
-
Tables
-
B- Trees
-
B+ Trees
D
Correct answer
Explanation
B+ Trees are preferred over B-Trees for filesystems because all data is stored in leaf nodes, making range queries and sequential access much faster. The leaf nodes are linked together, allowing efficient traversal of all records.
A
Correct answer
Explanation
In Windows, 'CON' is a reserved system name (representing the console) and cannot be used as a folder or file name. Other reserved names include PRN, AUX, NUL, and COM1. Names like 'ron', 'vir', and 'dir' are permitted.
-
awk '{print $9}' test.txt > Result.txt
-
awk '{print $9}' Result.txt > test.txt
-
awk '{print $9}' Test.txt > result.txt
-
awk '{print $9}' result.txt > Test.txt
A
Correct answer
Explanation
The awk command '{print $9}' extracts the 9th column from each line of test.txt, and the '>' operator redirects the output to Result.txt. This is the correct syntax and file order. The other options either swap the file names (which would overwrite test.txt) or have incorrect case sensitivity in filenames (Unix is case-sensitive).
-
txt
-
wrd
-
doc
-
none of these
C
Correct answer
Explanation
The .doc extension was the default file format for Microsoft Word documents from Word 97 through Word 2003. When Office 2007 introduced the XML-based .docx format, .doc became the 'legacy' format but remained widely supported. While .txt is plain text and .wrd is not a standard Word extension, .doc is the historically correct answer for Word's default extension. Modern Word uses .docx by default.
-
Tagged Image File Form
-
Tag Image File Form
-
Tagged Image Film Format
-
Tagged Image File Format
D
Correct answer
Explanation
TIF (more commonly TIFF) stands for Tagged Image File Format. It is a flexible file format for storing images, popular in desktop publishing and graphic design. The other options miss 'Tagged' or use incorrect variations like 'Film' instead of 'File'.
-
temp file
-
raw file
-
permanent file
-
None
B
Correct answer
Explanation
A raw file contains unprocessed, uncompressed data directly from a source with no alterations or manipulation by the computer. Raw files preserve all original data without compression algorithms or other processing, making them ideal for applications requiring maximum fidelity and editing flexibility.