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. C:\Windows\VERITAS\NetBackup\Temp

  2. C:\VERITAS\NetBackup\Temp

  3. C:\my documents\VERITAS\Net Backup\Temp

  4. C:\Program Files\VERITAS\Net Backup\Temp

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

On Windows systems, NetBackup temporary files are stored in C:\Program Files\VERITAS\NetBackup\Temp. This is the default installation location for NetBackup on Windows. The other options (Windows folder, VERITAS root, My Documents) are not the correct locations for NetBackup temporary files.

Multiple choice technology databases
  1. It describe how to interpret the flat file and options to load the data.

  2. It describe the location and format of the data file.

  3. It describe the location of the Bad and Discard records file .

  4. It has the control to connect database

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

The control file in SQL Loader specifies: how to interpret the data format (field delimiters, data types), location and format of the source data file, and paths for bad/discard files. Database connection parameters are passed on the command line (userid=), not defined in the control file.

Multiple choice technology testing
  1. Object Repository files

  2. VB action files

  3. QTP Action files

  4. Stores test data

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

In QTP (QuickTest Professional), files with the .tsr extension represent shared object repositories. Other options like .vbs are action/script files, and data is typically stored in Excel .xls or .xlsx files.

Multiple choice technology mainframe
  1. OUTPUT

  2. INPUT

  3. EXTEND

  4. APPEND

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

In COBOL, the OUTPUT mode opens a new or empty file for writing, replacing any existing content. The EXTEND mode opens a file to write records starting at the end of the existing file (appending). INPUT is read-only, and APPEND is not a valid COBOL OPEN keyword.

Multiple choice technology platforms and products
  1. It is used only to read the data from flat file.

  2. It is used only to write data into another file.

  3. It is used to either read or write data from or into a file at a time.

  4. It is used to read and write data from and into a file at a time.

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

In InfoSphere DataStage, a Sequential File stage can be configured to either read data from or write data to a flat file in a given instance. It cannot perform both read and write operations concurrently on the same link path in a single execution.

Multiple choice technology
  1. File sets are partitioned.

  2. File sets are unpartitioned.

  3. File sets are stored as a single file.

  4. File sets are readable by external applications.

  5. File sets are stored as header file and data files

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

File Sets in DataStage have three key characteristics: they are partitioned across multiple files for parallel processing (A), they are readable by external applications because they use a standard format (D), and they consist of a header file describing the structure plus separate data files (E). Option B is false (file sets are partitioned), and Option C is false (they are multiple files, not a single file).

Multiple choice technology platforms and products
  1. .txt format

  2. .dtx format

  3. .dex format

  4. .dx format

  5. None of above

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

Dalvik VM (the virtual machine in Android's runtime) executes files in .dex (Dalvik Executable) format. Java bytecode is converted to .dex format during the Android build process. The .dex format is optimized for memory-constrained devices and uses a different instruction set than standard Java bytecode. .txt, .dtx, and .dx are not executable formats for Dalvik VM.

Multiple choice technology programming languages
  1. BFILE

  2. BLOB

  3. CLOB

  4. LONG RAW

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

The BFILE data type stores a locator pointer to a binary file residing on the external operating system server filesystem. BLOB and CLOB store binary and character data internally inside the database tablespaces, while LONG RAW is a deprecated internal data type.

Multiple choice technology platforms and products
  1. True

  2. False

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

The Assets folder in an Android project contains files that ARE packaged with the application. Unlike resources which are compiled and accessed through R.java, assets are included in the APK as-is and accessed via AssetManager. The statement claims they are 'not packaged' which is incorrect.