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

Multiple choice technology packaged enterprise solutions
  1. .sif

  2. .srf

  3. .cfg

  4. .rpd

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology packaged enterprise solutions
  1. .sif

  2. .srf

  3. .cfg

  4. .rpd

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology operating systems
  1. grep '\' filename

  2. grep \\ filename

  3. grep '\\' filename

  4. grep "\" filename

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology platforms and products
  1. 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.

  2. It is an optional file and may contain some project related information.

  3. It is an empty folder to cache information.

  4. None of these

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. GIF

  2. JPG

  3. MBP

  4. TIF

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Fixed Block file

  2. Fixed Unblock file

  3. Variable Block file

  4. Variable Unblock file

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. 10

  2. 35

  3. 23

  4. 28

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. VSAM File

  2. Sequential file

  3. Sequential and VSAM

  4. None

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. VFMT

  2. FMT

  3. UNFMT

  4. All of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.