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 operating systems
  1. KTorrent

  2. Wget

  3. GWget

  4. Transmission

  5. GTorrent

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

KTorrent and Transmission are both BitTorrent clients for Linux that enable downloading and uploading files using the BitTorrent protocol. Wget and GWget are download managers for HTTP/FTP, while GTorrent is not a standard Linux torrent application.

Multiple choice technology operating systems
  1. Dolphin

  2. Nautilus

  3. Konqueror

  4. Metacity

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

Dolphin is the default file manager for the KDE Desktop Environment. Nautilus is used in GNOME, Konqueror was KDE's previous file manager/web browser, and Metacity is a window manager for GNOME (not a file manager).

Multiple choice technology enterprise content management
  1. True

  2. False

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

In Documentum, r_folder_path is a computed repeating attribute representing the paths to the object. A single folder (represented by a single i_folder_id in the document's folder list) can have multiple paths if its ancestor folders or the folder itself are linked to multiple locations, resulting in multiple r_folder_path values for one i_folder_id.

Multiple choice technology operating systems
  1. It makes a new empty file

  2. It displays the contents of a file

  3. It updates the pre existing file

  4. It makes a new directory

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

The primary use of the touch command is to create a new empty file if it does not exist, or update the access/modification timestamps of an existing file. It does not display content, make directories, or edit file data.

Multiple choice technology operating systems
  1. /etc/test vi

  2. vi /etc/test

  3. edit /etc/test

  4. None of these

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

The vi editor is invoked with the syntax 'vi [filename]'. Therefore 'vi /etc/test' is the correct way to open the /etc/test file. Option A has the wrong order (command first), option C uses a non-standard command, and 'edit' is not the standard vi invocation.

Multiple choice technology
  1. SVN Commit

  2. SVN Update

  3. SVN Revert

  4. SVN Resolved

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

Before working on a file from SVN, you must run SVN Update to get the latest version from the repository. Commit writes your changes to the server (opposite direction), Revert discards local changes, and Resolved marks a conflict as resolved after manual fixing.

Multiple choice technology
  1. Edit Conflicts and Resolved

  2. Delete the file from the local history, and update it, before commiting the local changes

  3. Commit the local user's changes first and update the conflicted file

  4. All the above

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

Both A and B are valid conflict resolution strategies in SVN. A: Use the built-in conflict editor to manually merge changes, then mark as resolved. B: Delete the conflicted file, update to get the repository version, then reapply local changes. C is incorrect - committing during a conflict state will fail and risks data loss.

Multiple choice technology web 2.0
  1. Flash Player 8

  2. Flash Player 9

  3. Flash Player 10

  4. Flash Player 11

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

The FileReference.save() method was introduced in Flash Player 10 as part of the file reference API enhancements. It allows applications to save files to the user's local filesystem. Earlier versions (8 and 9) did not have this capability for security reasons.

Multiple choice technology security
  1. Should be placed securely in a folder called “temp” in the web root

  2. Can be placed anywhere in the web root as long as there are no links to them

  3. Should be completely removed from the server

  4. Can be placed anywhere after changing the extension

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

Temporary files often contain sensitive operational data and should be completely removed from the server to prevent info leakage. Leaving them in public folders like the web root, even without links or with modified extensions, exposes them to discovery by attackers utilizing directory brute-forcing or source disclosure exploits.

Multiple choice technology security
  1. Print the logs to a paper

  2. Create a copy of data in your laptop/desktop

  3. Copy the files to CD-R's

  4. None of the above

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

Copying log files to CD-Rs or other Write-Once-Read-Many (WORM) media is the preferred backup method because it prevents logs from being altered or deleted by attackers trying to hide their tracks. Printing on paper or copying to easily mutable local laptop drives does not offer the same security guarantees.