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 databases
  1. bookmark.nsf

  2. names.nsf

  3. pernames.ntf

  4. mail.box

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

names.nsf is the default filename for the Lotus Notes Local Address Book. bookmark.nsf stores bookmarks, pernames.ntf is the template design file for creating personal address books, and mail.box holds outgoing mail pending delivery.

Multiple choice technology databases
  1. pernames.ntf

  2. bookmark.nsf

  3. bookmark.ntf

  4. names.nsf

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

Connection and location documents in Lotus Notes are stored in the names.nsf file, which is the user's personal Name and Address Book (NAB). This file contains all location-specific settings including connection documents for servers, network ports, and replication schedules. The .ntf files are templates, and bookmark.nsf/ntf store different elements entirely.

Multiple choice technology databases
  1. log.nsf

  2. names.nsf

  3. notes.ini

  4. cache.ndk

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

Person documents in Lotus Domino are stored in the Domino Directory, which is the file names.nsf. This database contains all user, group, and server configuration information. log.nsf is for database activity logs, notes.ini is a configuration file, and cache.ndk is a cache file.

Multiple choice technology databases
  1. C:\Users\EmpID\AppData\Local\Lotus\Notes\Data

  2. C:\Users\Emp ID\IBM\RCP

  3. c:\IBM\Sametime\Notes

  4. C:\Windows\System32\Local\Lotus\Notes\Data

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

On Windows 7 and later, Lotus Notes stores user data in the AppData directory structure under the user's profile. The path C:\Users\EmpID\AppData\Local\Lotus\Notes\Data is the standard location where notes.ini, user data, bookmarks, and configuration files are stored. The other paths are either incorrect or for different IBM products.

Multiple choice technology databases
  1. Notes Template File/ Facility

  2. Notes Temporary File

  3. New Template file

  4. Network Transport Facility

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

NTF stands for 'Notes Template Facility' - it's the file extension for Lotus Notes template databases. These are database templates that can be used to create new NSF (Notes Storage Facility) databases. The standard naming convention in Lotus Notes is that NTF files are templates, NSF files are active databases.

Multiple choice technology databases
  1. True

  2. False

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

Emails in Lotus Notes are stored in .nsf database files (mail databases), not in .id files. ID files contain user security certificates and encryption keys, not email data. Option B correctly states this is false.

Multiple choice technology databases
  1. More--> Out of Office/ Tools--> Out of Office

  2. File ---> Preferences—Basics – Out of office

  3. Actions—Settings ---> Out of Office

  4. File--> Locations-->Manage Locations-->More-->Preferences-->OOO

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

In Lotus Notes, Out of Office is typically accessed through the 'More' menu or 'Tools' menu depending on the version. Option A correctly identifies the navigation path through More/Tools menus.

Multiple choice technology operating systems
  1. prefix the name of file with a '.' <dot>

  2. prefix the name of file with a '~' <tilt>

  3. by changing its permissions

  4. Any of the Above

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

In Unix-like systems, files are hidden by prefixing their names with a dot (.). Hidden files are not shown by default in directory listings (ls command). Options like tilde (~) or changing permissions don't create hidden files in Unix.

Multiple choice technology databases
  1. .doc

  2. .xls

  3. .rtf

  4. .jpg

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

BES supports .doc, .xls, and .jpg attachments for wireless delivery. However, .rtf (Rich Text Format) is not supported by the BlackBerry Attachment Service, as it uses a proprietary format that requires specific handling not available in the standard BES attachment filtering.

Multiple choice technology web technology
  1. <?php include_file("time.inc"); ?>

  2. <% include file="time.inc" %>

  3. <?php require("time.inc"); ?>

  4. <!--include file="time.inc"-->

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

The require() function is used to include files in PHP, and it will cause a fatal error if the file cannot be found. While include() also works, require is generally preferred for essential files. Option A uses a non-existent function, option B uses ASP syntax, and option D uses an HTML comment.

Multiple choice technology enterprise content management
  1. True

  2. False

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

Component definition files are not located in the {virtual root}\config directory. They are typically found in other designated locations within the framework's directory structure, such as component-specific directories or other configuration areas, not the general config directory.

Multiple choice technology programming languages
  1. mxml file

  2. swf file

  3. as file

  4. Don't know

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

Compiling an MXML (Magic XML) file in the Adobe Flex framework produces a SWF (Shockwave Flash) file, which is the final compiled bytecode executable run by Flash Player. Distractors like mxml or as (ActionScript) files represent raw source code inputs rather than the compilation outputs.