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
  1. File System

  2. XML file

  3. Data Dictionary

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Documentum uses a Data Dictionary to store and manage all metadata about object types, their attributes, relationships, and business rules. This centralized repository ensures consistent object definitions across the docbase and enables the server to validate and enforce type constraints.

Multiple choice technology
  1. Rendition

  2. PDF

  3. TIFF

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A rendition is an alternate format representation of a document's content, such as a PDF created from a Word file or a thumbnail image. Renditions are read-only and are automatically generated or manually created to support different viewing requirements while preserving the original content.

Multiple choice technology
  1. Images

  2. Video

  3. Sound

  4. Word Document

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

WAV (Waveform Audio File Format) is a Microsoft/IBM standard audio format for storing sound bitstreams on PCs. It contains uncompressed raw audio data and is specifically designed for sound files, not images, video, or documents.

Multiple choice technology testing
  1. perform any OS operations

  2. perform any script activities

  3. perform any file system related activities

  4. No such object supported in Quick Test

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The File System Object (FSO) provides methods specifically for file system operations like creating, deleting, copying, and moving files and folders. It does not perform arbitrary OS operations (option A), all script activities (option B), and it is definitely supported in Quick Test Professional (option D is false).

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Sequential file stages in DataStage are typically used as source or target stages for reading from or writing to flat files. They are not designed to be intermediate stages for data passing between other stages within a job. Use Dataset stages or in-memory buffers for intermediate storage.

Multiple choice technology databases
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The extended stored procedure xp_fileexist checks whether a specified file exists on the server's file system and returns output parameters indicating file existence. It returns 1 in the 'File Exists' parameter if the file is found. Note: Extended stored procedures are deprecated in modern SQL Server versions in favor of FILESTREAM and other methods.

Multiple choice technology mainframe
  1. Logical- FILE-1, Physical- INFILE

  2. Logical- INFILE, Physical- FILE-1

  3. Logical- None, Physical-ASSIGN

  4. None of them

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In the SELECT statement, the filename immediately following SELECT (FILE-1) is the logical filename used inside the COBOL program, and the name assigned (INFILE) corresponds to the external physical file or JCL DD name.

Multiple choice technology mainframe
  1. SEQUENTIAL

  2. RANDOM

  3. DYNAMIC

  4. ACCESS MODE has nothing to do with it

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In COBOL, DYNAMIC access mode allows a program to switch between sequential and random access of records on the same file. SEQUENTIAL only permits serial reading, and RANDOM only permits direct reading by key, making DYNAMIC the correct choice.

Multiple choice technology packaged enterprise solutions
  1. Rule-Admin-Product

  2. Choosing File > Export Archive from the Developers Portal

  3. Choosing Tools > Rule Management > Delete a RuleSet

  4. All of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To create a zip archive containing rules in Pega, you use File > Export Archive from the Developer Portal. Rule-Admin-Product is for product rules, and the Delete a RuleSet option is for deletion, not archiving.

Multiple choice technology
  1. Output

  2. Fail

  3. Drop

  4. Continue

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In the Sequential File Stage, the 'Output' Reject Mode writes rejected records to a reject link for later handling. 'Fail' stops the job entirely on rejection, 'Drop' silently discards rejected records, and 'Continue' processes remaining records but doesn't write rejects anywhere.