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
  1. file.exe

  2. file.doc

  3. file.xlf

  4. file.xls

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

The .xls extension is the traditional file format for Microsoft Excel workbooks, used in Excel 97-2003. While modern Excel uses .xlsx as the default format (introduced in Excel 2007), .xls files are still widely recognized and can be opened in current Excel versions with compatibility mode. Options A (.exe), B (.doc), and C (.xlf) are incorrect - .exe is for executable programs, .doc for Word documents, and .xlf for translation interchange files.

Multiple choice
  1. .EXE

  2. .BAS

  3. .VBP

  4. .DOC

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

In Visual Basic 6.0, standard modules use the .BAS file extension. .EXE is for compiled executables, .VBP is the project file itself, and .DOC is a Word document. BAS files contain reusable code procedures and global declarations that aren't tied to specific forms.

Multiple choice
  1. text file

  2. data file

  3. binary file

  4. core

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

A text file stores data as a sequence of characters (human-readable). An integer stored as characters like '12345' rather than binary representation makes it a text file. Binary files store data in raw format.

Multiple choice
  1. cp

  2. cpy

  3. cmp

  4. none of these

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

The cp (copy) command in UNIX copies files and directories. The options listed as 'cpy' and 'cmp' don't exist as standard commands. Cp can copy single files, multiple files to a directory, or recursively copy entire directory structures with the -r flag.