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. /etc/inittab

  2. /etc/filesystems

  3. /etc/mtab

  4. /etc/fstab

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

/etc/mtab contains information about currently mounted filesystems on Linux systems, dynamically updated by the mount command. /etc/fstab contains static configuration for filesystems to mount at boot, while /etc/inittab is for init system configuration. /etc/filesystems defines filesystem types but not mount status.

Multiple choice technology databases
  1. data file

  2. password file

  3. archivelog file

  4. temporary file

  5. online redo log file

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

RMAN BACKUP command cannot back up online redo log files. RMAN supports backing up datafiles, control files, parameter files (spfile), archivelog files, and even backup sets themselves, but online redo logs are explicitly excluded. This is by design - redo logs are managed through the log switch/archive mechanism, not RMAN backups. Attempting to back them up with RMAN will fail.

Multiple choice technology
  1. True

  2. False

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

Excel has a 'Save As' feature that allows saving workbooks in multiple formats including CSV (Comma Separated Values). CSV is a plain text format where each column is separated by commas and each row by line breaks. This is commonly used for data interchange between different systems. The statement is true.

Multiple choice technology web technology
  1. Place the file 'secret.txt' in a directory called 'protected' in the 'myApp' Web Application.

  2. Place the file 'secret.txt' in a directory called 'private' in the 'myApp' Web Application.

  3. Place the file 'secret.txt' in a directory called 'WEB-INF' in the 'myApp' Web Application.

  4. Any filename starting with 'secret' are usually not accessible by the Clients, so this file can be places anywhere in the Web Application.

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

The WEB-INF directory is specially protected in the web application structure - contents cannot be directly accessed by clients via URLs. Options A and B ('protected' and 'private' directories) are not special. Option D is incorrect - filenames starting with 'secret' have no special protection.

Multiple choice technology programming languages
  1. True

  2. False

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

The File class in Java represents file and directory pathnames abstractly but does not provide methods to read or write file contents. It only manipulates file metadata (existence, deletion, path operations). For actual I/O operations, you need stream classes like FileReader, FileWriter, BufferedReader, or Files utilities.

Multiple choice technology testing
  1. Local Object repository

  2. Shared Object repository

  3. Both

  4. None

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

In QTP, the Local Object Repository is embedded within the test or action file and is not accessible as a separate file. In contrast, the Shared Object Repository is stored as a separate .tsr file that can be accessed and reused across multiple tests.

Multiple choice technology
  1. an open folder.

  2. the folder contains subfolders.

  3. a text file.

  4. a graphics file.

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

In Windows Explorer tree view, a plus (+) sign indicates a folder contains subfolders and is currently collapsed (not expanded). Clicking the plus expands the folder to show its subfolder structure. An open/expanded folder shows a minus (-) sign instead. Text and graphics files appear as icons, not with expand/collapse indicators.

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

This is an EXCEPT question asking for the FALSE statement. Files are stored on permanent storage media like hard drives, SSDs, or flash drives, not in RAM. RAM is volatile memory that loses its contents when power is turned off. The other statements are all true: files are organized collections of data, applications create files, and organizing files in folders is good practice. Files may be loaded into RAM temporarily when accessed, but are not stored there permanently.