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. A file is a collection of related pieces of information stored together for easy reference.

  2. Files can be generated from an application.

  3. Files are stored in RAM.

  4. Files should be organized in folders.

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

Files are stored on secondary storage devices like hard disks or SSDs, not in RAM. RAM is volatile memory used for temporary data while the computer is running - it loses all contents when power is turned off. Files must persist on non-volatile storage to be retained between sessions. Organizing files in folders (A, D) and generating them from applications (B) are true statements about file management.

Multiple choice technology operating systems
  1. LOOKUP

  2. FIND

  3. STRFIND

  4. SEARCH

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

The FIND command in MS-DOS/Windows searches for a specific text string within a file or files. LOOKUP, STRFIND, and SEARCH are not standard MS-DOS commands for this purpose. FIND can also search multiple files and display matching lines.

Multiple choice technology operating systems
  1. filetype

  2. assoc

  3. ext

  4. display /ext

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

The ASSOC command displays or modifies file extension associations (like .txt=notepad). Used alone, it shows all current file extension associations. Options A, C, and D (filetype, ext, display /ext) are not valid Windows commands.

Multiple choice technology databases
  1. BLOB

  2. CLOB

  3. BFILE

  4. NCLOB

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

In Oracle, BFILE is a datatype that stores a pointer/locator to a binary file stored on the operating system's disk (outside the database). BLOB and CLOB store the actual data within the database, while NCLOB stores Unicode character data internally.

Multiple choice technology
  1. Creating a file

  2. Deleting a file

  3. Modifying a file

  4. View a file

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

The vi editor is a text editor used for creating, modifying, and viewing text files. While you can execute shell commands from vi to delete files, the editor's primary purposes are creation, editing, and viewing - not file deletion.

Multiple choice technology
  1. :w

  2. :q

  3. :x

  4. :q!

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

The :x command in vi saves changes and exits the file in one step. Option :w only saves (write) without exiting, :q quits only if no changes were made, and :q! quits discarding changes. For a save-and-exit operation, :x or :wq are the correct choices.

Multiple choice technology mainframe
  1. Invalid File

  2. File is full; cannot write

  3. File is in Use

  4. Cannot find the file

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

Guardian error 12 represents 'File is in Use' - meaning the requested file is locked by another process. This is a file access conflict error, not a file-not-found or file-full error. The file exists but cannot be accessed due to an existing lock.