Computer Knowledge
Computer File Systems
1,516 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
-
Lists the file or directory contents that the link references
-
Lists the name in each slot for each directory specified in the Directory parameter.
-
Displays nonprintable characters in file names as a ? (question mark) and Reverses the order of the sort.
-
Lists all subdirectories recursively.
C
Correct answer
Explanation
ls -lqr combines flags: -l (long format), -q (show non-printable characters as ?), and -r (reverse order). When combined, it displays detailed listings with non-printable characters replaced by ? and reverses the sort order (typically smallest files first when sorted by size).
-
VSAM
-
QSAM
-
xml file
-
text file
B
Correct answer
Explanation
Extract records are received through QSAM (Queued Sequential Access Method), which is the standard access method for this data transfer. VSAM is a different access method, and XML/text files are not the primary mechanism.
-
Images are stored in FAP
-
It contains the attributes of the object.
-
It contains the offset value of the image
-
FAP files can be read by the processing system and batch system.
C
Correct answer
Explanation
Statement C is incorrect because FAP files store images and their attributes, not offset values. Offset values would typically be stored in separate index or reference files. Options A, B, and D describe actual FAP file characteristics.
-
It is a comma-delimited list of one or more recipient list.
-
The specific recipients only receive the copy.
-
Without defining in FORM.DAT, one can send the copy to recipient defined in recipient list.
-
None of these
C
Correct answer
Explanation
The question asks which statement about recipient lists is incorrect. Option C states that you can send copies to recipients defined in the recipient list without defining them in FORM.DAT, which is indeed incorrect because FORM.DAT (or similar control form definitions) is required for proper recipient configuration in CICS form handling. Options A, B, and D are either correct statements or not the incorrect statement being sought.
-
DFHEIBLK
-
DFHAID
-
DFHBMSCA
-
DFHKEYS
B
Correct answer
Explanation
DFHAID is the CICS copybook that defines constants for attention identifier (AID) keys like PF1, ENTER, CLEAR, etc. DFHEIBLK defines the EIB structure itself. DFHBMSCA contains basic mapping support constants, and DFHKEYS is not a standard CICS copybook.
-
central place for storing code to be shared
-
to store images
-
to store files
-
None
A
Correct answer
Explanation
A script library serves as a centralized repository for storing reusable code that can be shared across multiple applications and design elements. This allows developers to maintain code in one place and reference it from forms, views, agents, and other components. Options B and C are incorrect because script libraries are specifically for code, not for storing images or files directly.
B
Correct answer
Explanation
The statement is incorrect because it says 'Files are the central place' rather than 'The Files resource is the central place.' Files themselves are not the central place - the shared resource container called 'Files' is where you import and store files like HTML documents for use throughout your applications. The distinction is between the storage mechanism (the resource) and the stored items.
-
Notes Storage Facility
-
Notes Template Facility
-
Both
-
None
A
Correct answer
Explanation
The .NSF extension stands for 'Notes Storage Facility' and is used for standard database files in Lotus Notes/Domino. These files store both the application design elements and user data. Option B is incorrect because .NTF is the extension for template files, not regular databases. NSF files are the runtime databases that users interact with.
-
Notes Storage Facility
-
Notes Template Facility
-
Both
-
None
B
Correct answer
Explanation
The .NTF extension specifically stands for 'Notes Template Facility' and is used for template database files in Lotus Notes/Domino. Templates serve as blueprints for creating new databases - they contain design elements but no user data. Option A is incorrect because NSF refers to regular storage facility databases, not templates. NTF files are the master templates from which NSF databases are created.
-
Image file
-
Animation/movie file
-
Audio file
-
MS Office document
B
Correct answer
Explanation
The .MOV extension is Apple's QuickTime multimedia file format, specifically designed for storing video and audio content. It is a container format used for video files, not images, audio-only files, or documents.
-
Backup file
-
Audio file
-
Animation/movie file
-
MS Encarta document
A
Correct answer
Explanation
The .BAK extension is universally used across operating systems and applications to denote backup files. When programs create backup copies of documents, configurations, or databases, they typically append .bak to indicate it's a backup copy. It's not associated with audio files, animations, or MS Encarta documents.
-
keyboard
-
terminal
-
server
-
host
A
Correct answer
Explanation
In Unix, a character special file represents a device that transmits data sequentially, byte by byte, without buffering. A keyboard is a classic example of a character input device, whereas storage devices are block devices.
B
Correct answer
Explanation
A directory in Unix filesystems must have at least 2 links: the '.' entry (self-reference) and the '..' entry (parent reference). The minimum is 2, not any other number. New directories start with exactly 2 link counts.
B
Correct answer
Explanation
A Unix directory file has a minimum of 2 links: one is the directory's own entry (the '.' link), and the second is the link from its parent directory (the '..' entry in the parent pointing to this directory). This makes the statement 'minimum number of links is 2' FALSE - directory files actually have at least 2 links by default, not exactly 2, and can have more as subdirectories are added.
-
documentum.properties
-
documentum.config
-
config.properties
-
dfc.properties
D
Correct answer
Explanation
The dfc.properties file contains Docbroker connection information including host, port, and other connection parameters. DFC clients read this file to locate and connect to the appropriate Docbroker.