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. With in Repository

  2. From one Repository to another Repository

  3. All the above

  4. None

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

In Informatica PowerCenter, folders can be copied both within the same repository and from one repository to another. Within a repository, you can create copies of folders for versioning or organizational purposes. Across repositories, you can copy folders for migration between development, testing, and production environments. The 'All the above' option correctly captures both scenarios.

Multiple choice technology
  1. True

  2. False

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

Informatica PowerCenter allows creating header and footer rows in target flat files. This can be configured through session properties and the target flat file definition, enabling you to output header rows at the beginning and footer rows at the end of the file.

Multiple choice technology databases
  1. Datafile

  2. Device

  3. Data Object

  4. Material

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

In Sybase, the physical storage file used to store database data is called a 'device.' A device is the actual operating system file or disk partition allocated to Sybase for data storage. The other options are incorrect: 'Datafile' is not standard Sybase terminology, 'Data Object' refers to logical structures, and 'Material' is not a Sybase storage term.

Multiple choice technology testing
  1. Possible in all list

  2. Possible in libraries

  3. Not possible in libraries

  4. No such feature in SharePoint

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

Multiple document uploads are supported in SharePoint document libraries but not in regular lists. Document libraries have built-in support for uploading multiple files simultaneously through the 'Upload Multiple Documents' option. Lists store structured data and don't have this bulk upload capability.

Multiple choice technology testing
  1. Not Possible

  2. Restrict only certain file types.

  3. Restrict any file type by doing as below, Central administration page >Under operations > Blocked File Types and Add .extension of the file type

  4. Restrict any file type by doing as below, Site setting >Under Gallery > Blocked File Types and Add .extension of the file type

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

File type restrictions in SharePoint are configured through Central Administration under Operations > Blocked File Types. This global setting allows administrators to block specific file extensions (like .exe or .bat) from being uploaded anywhere in the farm. Option D is incorrect because Site Settings don't control this farm-level feature.

Multiple choice technology testing
  1. Flat files

  2. XML Files

  3. Flat Files and XML Files

  4. None

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

Test results can be stored in multiple formats, including simple flat files (like CSV or plain text) for basic reporting, and XML files for structured, hierarchical data that can be parsed and transformed easily. Both formats are commonly used depending on complexity and integration needs. XML provides better structure for detailed results, while flat files offer simplicity for basic logging and requirements.

Multiple choice technology operating systems
  1. /home is still mounted

  2. /var is 100% full

  3. A user is editing a file residing in /home

  4. /tmp is 100% full

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

When expanding a filesystem using chfs, AIX requires space in /tmp for temporary files. If /tmp is 100% full, the chfs command will fail even if the target filesystem (/home) has space issues. This is a common AIX filesystem administration gotcha.

Multiple choice technology operating systems
  1. The /fstest filesystem is out of space

  2. The volume group containing the file system is not imported.

  3. The /fstest directory has been removed.

  4. A user is logged into the /fstest filesystem.

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

The mount point directory /fstest must exist before mounting. The error explicitly states a path component doesn't exist, which directly points to a missing directory. Out of space would return different errors (ENOSPC), and a logged-in user wouldn't block mounting.

Multiple choice technology programming languages
  1. Branching

  2. Merging

  3. Annotate

  4. History

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

Branching preserves the complete history of files and folders because when you create a branch, TFS maintains the entire version history up to that branch point. You can view the full historical context in the new branch. Merging combines changes but doesn't create the historical record, Annotate shows per-line history, and History is a view command.

Multiple choice technology security
  1. I only

  2. I and ii only

  3. I, ii and iii only

  4. I and iii only

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

Proper information handling requires: (i) sharing files only with authorized personnel using proper rights management (RMS ensures this), and (ii) declaring media before moving it in/out of office premises for audit purposes. Option iii is incorrect because confidential printed files must be disposed securely (shredding or secure bins), NOT in regular trash where they could be retrieved. The claimed answer B (I and ii only) correctly excludes the incorrect option iii.

Multiple choice technology operating systems
  1. find -mtime -24

  2. find -mday -1

  3. find -mday +1

  4. find -mtime -1

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

The find -mtime -1 command finds files modified less than 1 day ago (within the last 24 hours). The -mtime option uses days, where negative values mean less than and positive values mean more than. Option A is incorrect because -mtime uses days not hours. Option B uses the non-existent -mday option. Option C with +1 would find files modified MORE than 1 day ago.

Multiple choice technology operating systems
  1. using the temp filed in the file's inode

  2. using the id filed in the file's inode

  3. using the type filed in the file's inode

  4. using the type filed in the directory's inode

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

The kernel uses the 'type' field in the file's inode to distinguish between ordinary files and device files. Each inode contains a type field that identifies whether the file is a regular file, directory, character device, block device, symbolic link, etc. Option A (temp field) and B (id field) don't exist for this purpose. Option D is wrong because the type is in the file's inode, not the directory's.