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
D
Correct answer
Explanation
The OBIEE Repository file has the .rpd extension by convention. This file contains all metadata about data sources, business models, and presentation layer definitions. It is the core configuration file that OBIEE Server uses to execute queries.
-
NQSConfig.txt
-
NQSconfig.cfg
-
NQSconfig.xml
-
NQSconfig.ini
D
Correct answer
Explanation
The RPD file name and its configuration parameters are specified in the NQSConfig.INI configuration file of the Oracle BI / Siebel Analytics Server. The other extensions like .txt, .cfg, or .xml are incorrect for this configuration file.
D
Correct answer
Explanation
The repository file in Oracle Business Intelligence (formerly Siebel Analytics) uses the .rpd file extension. The other extensions represent Siebel integration files (.sif), compiled repository files (.srf), or configuration files (.cfg).
-
grep '\' filename
-
grep \\ filename
-
grep '\\' filename
-
grep "\" filename
A,B,D
Correct answer
Explanation
To search for a literal backslash character with grep, you need proper escaping. Single quotes (A) need 4 backslashes, single quotes with escape (B) need 8 backslashes due to shell processing, and double quotes (D) need 3 backslashes. Option C with 6 backslashes is incorrect.
-
It defines MyEclipse-specific information such as the location of the web-root folder and other important details required by MyEclipse web tools for their proper operation.
-
It is an optional file and may contain some project related information.
-
It is an empty folder to cache information.
-
None of these
A
Correct answer
Explanation
The .mymetadata file is a configuration file generated by MyEclipse to store project-specific metadata, such as the context root, web-root folder location, and project type, which are required for deployment and tooling operations.
D
Correct answer
Explanation
GIF, JPG, and BMP (misspelled as MBP in the options) are common image formats. TIF (Tagged Image File Format) is a valid image type, but the question contains a typo ('MBP' instead of 'BMP'). However, TIF is often not supported as a standard web resource image compared to GIF and JPG, making the question slightly flawed but answerable.
-
Fixed Block file
-
Fixed Unblock file
-
Variable Block file
-
Variable Unblock file
A
Correct answer
Explanation
In COBOL, ORGANISATION IS SEQUENTIAL with RECORDING MODE F (Fixed) and BLOCK CONTAINS 0 defines a Fixed Block file. This means records are fixed-length and blocked together for efficient I/O.
-
INDEXED
-
RELATIVE
-
SEQUENTIAL
-
All of the above
D
Correct answer
Explanation
In COBOL, all three file organizations (INDEXED, RELATIVE, and SEQUENTIAL) support all four open modes: INPUT (read-only), I-O (read/write), OUTPUT (write-new), and EXTEND (append).
B
Correct answer
Explanation
In COBOL file status codes, 35 indicates an 'Empty File' condition when attempting to read from a file that exists but contains no records. This is a standard file status code used in COBOL file operations. Code 10 typically indicates end-of-file, while other codes represent different error conditions.
-
VSAM File
-
Sequential file
-
Sequential and VSAM
-
None
C
Correct answer
Explanation
File-Aid is a comprehensive file manipulation tool for IBM mainframes that can browse and edit multiple file types. It supports both Sequential files (flat files processed record-by-record) and VSAM files (indexed files with complex access methods), making option C correct.
-
VFMT
-
FMT
-
UNFMT
-
All of the above
D
Correct answer
Explanation
File-Aid supports multiple file access formats: VFMT (Variable Format - files with variable-length records), FMT (Fixed Format - files with fixed-length records), and UNFMT (Unformatted - raw binary files). All three formats are valid access methods in File-Aid.
A
Correct answer
Explanation
File-Aid provides robust file comparison capabilities through its Compare utility (Option 6). It can compare two files at record, field, or layout levels, showing differences in detail.
B
Correct answer
Explanation
File-Aid does not provide data masking capabilities for PDS members or dataset records. Masking requires specialized data privacy tools or custom utilities. File-Aid can view, edit, and compare data but not mask sensitive fields.