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 platforms and products
  1. Select the COBOL copybook using the Browse button and capture the COBOL copybook with Manager

  2. FTP the COBOL copybook to the server platform in text mode and capture the metadata through Manager

  3. FTP the COBOL copybook to the client workstation in binary and capture the metadata through Manager

  4. FTP the COBOL copybook to the client workstation in texy mode and capture the Copybook with manager

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

COBOL copybooks are text files that must be transferred in text mode (not binary) to preserve line endings and character encoding. The correct workflow is FTP to the client workstation where the Manager application runs, then capture through Manager. Options A and B incorrectly reference server platform or direct capture, while C incorrectly specifies binary mode.

Multiple choice technology programming languages
  1. True

  2. False

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

An empty file is syntactically valid as a source file in most programming contexts. While it may not be useful or contain any executable code, it still conforms to file format requirements and can be compiled or processed without errors. The compiler/parser simply finds no content to process.

Multiple choice technology
  1. Read Only

  2. Read Write

  3. BOTH

  4. NONE

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

AWM (Analytical Workspace Manager) defaults to Read-Only attachment mode to protect data from accidental modifications. Read/Write must be explicitly chosen if updates are needed.

Multiple choice technology programming languages
  1. .jar

  2. .war

  3. .ear

  4. .zip

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

JAR (Java Archive) files bundle Java classes, associated metadata, and resources like property files, images, and configuration files. WAR files are specifically for web applications, EAR files for enterprise applications, and ZIP is a general compression format not specifically designed for Java resources.

Multiple choice technology programming languages
  1. Document Type definition

  2. Document type decision

  3. Document type data

  4. Document type development

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

DTD (Document Type Definition) defines the structure and legal elements of an XML document. It specifies what tags can be used, their order, and how they can be nested. DTDs provide validation rules for XML parsers to check document conformance.

Multiple choice technology mainframe
  1. compressed index key present in the INDEX record

  2. Average index key length is grater than 8

  3. High Embedded Freespace

  4. Extended upto 3 extent

  5. Low HIARBA

Reveal answer Fill a bubble to check yourself
A,B,C,D Correct answer
Explanation

VSAM files need REORG when: compressed index keys indicate fragmentation (A), average key length >8 suggests inefficient storage (B), high embedded freespace means wasted space (C), and extending to 3 extents shows the file is outgrowing its allocation (D). Low HIARBA (High Insert Activity Rate) would actually NOT suggest REORG.

Multiple choice technology databases
  1. trace files

  2. cross paltform transportable datafiles

  3. change tracking file

  4. temporary files

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

Trace files are not supported in ASM because they require frequent writes and are diagnostic in nature. ASM supports database files, control files, redo logs, and other persistent database-related files.

Multiple choice technology web technology
  1. True

  2. False

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

The statement is backwards - require() raises a fatal error (stops execution) if the file is not found, while include() only raises a warning and continues execution. This is a fundamental difference in how PHP handles missing files between these two constructs.

Multiple choice technology mainframe
  1. IEFBR14

  2. IEBGENER

  3. IEBCOPY

  4. IDCAMS

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

IEBCOPY is the IBM mainframe utility used for copying and compressing Partitioned Datasets (PDS). It can copy entire PDS libraries, merge members, and compress unused space within PDS files to reclaim storage. IEBGENER copies sequential datasets, IEFBR14 is a dummy program, and IDCAMS manages VSAM and GDG datasets.

Multiple choice technology programming languages
  1. META-INF is a suitable location for storing digital certificates.

  2. META-INF is used as a repository for common code.

  3. The MANIFEST.MF file is found in the META-INF directory.

  4. The deployment descriptor file is found in the META-INF directory.

  5. META-INF is not directly accessible to clients.

Reveal answer Fill a bubble to check yourself
A,C,E Correct answer
Explanation

META-INF stores JAR metadata like MANIFEST.MF and digital certificates. It is not for shared code. Critically, resources in META-INF are protected and not directly accessible via web URLs to clients.

Multiple choice technology platforms and products
  1. path of executables

  2. zip archive

  3. unzipped files

  4. The way you want

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

Delivering software to deployment teams using a zip archive is standard practice to prevent file corruption, preserve file structures, and facilitate single-file transport. Delivering raw paths or unzipped files is prone to access issues or configuration loss.

Multiple choice technology
  1. txt

  2. xtx

  3. text

  4. ext

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

The .txt extension is the universal standard for plain text files across all operating systems. Text extensions like .text are rarely used, and alternatives like .xtx or .ext are not standard file extensions. File extensions identify the file type to both the OS and applications.