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 general knowledge
  1. Folder on desktop

  2. File on a desktop

  3. Folder in my computer

  4. File in my computer

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

The Recycle Bin is a special folder on the Windows desktop that temporarily stores deleted files before they are permanently removed. It is not a file itself, but rather a container that holds deleted items. This design allows users to recover accidentally deleted files if needed.

Multiple choice general knowledge
  1. Mini Directory

  2. Junior Directory

  3. Part Directory

  4. Sub Directory

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

A subdirectory (or subfolder) is a directory nested within another directory in the file system hierarchy. 'Mini Directory,' 'Junior Directory,' and 'Part Directory' are not standard terms - the correct terminology is 'Sub Directory' or 'subfolder.'

Multiple choice general knowledge science & technology
  1. awk '{print $9}' test.txt > Result.txt
  2. awk '{print $9}' Result.txt > test.txt
  3. awk '{print $9}' Test.txt > result.txt
  4. awk '{print $9}' result.txt > Test.txt
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The awk command '{print $9}' extracts the 9th column from each line of test.txt, and the '>' operator redirects the output to Result.txt. This is the correct syntax and file order. The other options either swap the file names (which would overwrite test.txt) or have incorrect case sensitivity in filenames (Unix is case-sensitive).

Multiple choice general knowledge
  1. txt

  2. wrd

  3. doc

  4. none of these

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

The .doc extension was the default file format for Microsoft Word documents from Word 97 through Word 2003. When Office 2007 introduced the XML-based .docx format, .doc became the 'legacy' format but remained widely supported. While .txt is plain text and .wrd is not a standard Word extension, .doc is the historically correct answer for Word's default extension. Modern Word uses .docx by default.

Multiple choice general knowledge
  1. Tagged Image File Form

  2. Tag Image File Form

  3. Tagged Image Film Format

  4. Tagged Image File Format

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

TIF (more commonly TIFF) stands for Tagged Image File Format. It is a flexible file format for storing images, popular in desktop publishing and graphic design. The other options miss 'Tagged' or use incorrect variations like 'Film' instead of 'File'.

Multiple choice general knowledge
  1. a text file

  2. an MS Word document

  3. a Javascript file

  4. an Axtivx file

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

Plain text files (.txt) contain only unformatted text and cannot execute code, making them the least likely to harbor viruses. Word documents, JavaScript files, and ActiveX files can contain macros or executable code that viruses use to spread. ActiveX is particularly vulnerable to malicious code.

Multiple choice general knowledge science & technology
  1. temp file

  2. raw file

  3. permanent file

  4. None

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

A raw file contains unprocessed, uncompressed data directly from a source with no alterations or manipulation by the computer. Raw files preserve all original data without compression algorithms or other processing, making them ideal for applications requiring maximum fidelity and editing flexibility.

Multiple choice general knowledge science & technology
  1. Image file

  2. Image Color Matching Profile file

  3. Hypertext related file

  4. System file

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

.INI files are system initialization files used by Windows and other operating systems to store configuration settings. They are plain text files with a specific structure. They are not image files, color profiles, or hypertext files - those use extensions like .jpg, .icc, and .html respectively.

Multiple choice general knowledge science & technology
  1. CPU

  2. Monitor

  3. Hard drive

  4. RAM

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

The hard drive provides permanent (non-volatile) storage for files. When you save a file, it's written to the hard disk's magnetic surface and persists even after power is turned off. RAM is temporary storage that loses data when power is cut, the CPU processes data, and the monitor only displays it.

Multiple choice general knowledge science & technology
  1. Group Interchange Format

  2. Graphics Interchange Format

  3. Graphics Interchange File

  4. Group Interchange File

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

GIF stands for Graphics Interchange Format, a bitmap image format introduced by CompuServe in 1987. It's widely used for simple graphics and supports animation.

Multiple choice general knowledge science & technology
  1. Audio Video Interleaved

  2. Audio Video Interaction

  3. Audio Video Interchange

  4. Audio Video Interpreter

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

AVI stands for Audio Video Interleaved. It's a multimedia container format introduced by Microsoft in 1992. 'Interleaved' refers to how audio and video data are stored together in alternating chunks.

Multiple choice general knowledge science & technology
  1. Portable Document File

  2. Portable Document Format

  3. Photo Document Format

  4. Photo Document File

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

PDF stands for Portable Document Format, which is a file format developed by Adobe to present documents independently of application software, hardware, and operating systems. The key distinction is Format (the structure) versus File (an instance). Photo is incorrect as PDFs handle various content types.