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. Creating a file

  2. Writing a file

  3. Repositioning within a file

  4. Truncating a file

  5. Deleting a file

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

This operation on file is the one in which file attributes remain the same, but the file has a reduced size because a user deletes information in the file.

Multiple choice
  1. invoice data entry is online

  2. payment recording is done in a batch code

  3. inquiry concerning payable are to be answered online

  4. last record points to the first record

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

Online inquiry requires random access storage that can quickly retrieve any record without sequential searching. When users need instant answers about payable accounts, direct access storage is essential. Batch processing can use sequential storage, but online inquiry demands immediate access to specific records.

Multiple choice
  1. Standard input file, standard output file, standard error file

  2. Stdin, stdout, stderr

  3. Keywords, mouse, stderr

  4. Registry, Lib, Monitor

  5. None of these

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

These three file pointers are automatically defined when a program executes and provide access to the keyboard and screen.

Multiple choice
  1. functions that are related to human intelligence

  2. to add more records at the end of a file

  3. program error

  4. the rate at which data is transmitted

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

Appending in file operations means adding new data to the end of an existing file without modifying the existing content. This is commonly used in logging systems, data collection applications, and sequential file processing where records need to be added over time. The append position always follows the last byte of existing data.