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. more filename

  2. less filename

  3. cat filename

  4. touch filename

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

To create a new file without opening it, the user needs to use the touch command, which is option D.

Explanation for each option:

A. The more command is used to display the contents of a file one page at a time. It is not used to create a new file.

B. The less command is similar to the more command and is used to display the contents of a file one page at a time. It is also not used to create a new file.

C. The cat command is used to display the contents of a file in the terminal. It is not used to create a new file.

D. The touch command is used to create a new empty file without opening it. The command takes the name of the file as an argument. If the file already exists, then the command updates the modification timestamp of the file.

Therefore, the answer is: D. touch filename

Multiple choice technology
  1. ASCII files

  2. Binary files

  3. CSV files

  4. All of the above

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

nzload is designed for delimited text files, with CSV being the standard and most commonly supported format. It requires data in a structured, delimited format to parse correctly. While it supports various delimiters beyond just commas, CSV is the primary format. Binary formats require conversion or different loading tools.

Multiple choice technology
  1. id and scope

  2. type and id

  3. file and flush

  4. page and flush

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

The jsp:include action uses the 'page' attribute (specifying the relative URL to include) and the optional 'flush' attribute (controls whether the buffer is flushed before inclusion). Option D correctly identifies these attributes. Options A and B list attributes used by other JSP actions (useBean), and option C incorrectly uses 'file' instead of 'page'.

Multiple choice technology
  1. DDTLIB

  2. DEFLIB

  3. RULLIB

  4. TBLLIB

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

DEFLIB is the designated location for form files in the system's directory structure. Form files contain layout and formatting definitions for documents and reports. The other libraries serve different purposes - DDTLIB for data definitions RULLIB for rules and TBLLIB for table files.

Multiple choice technology
  1. W32BIN

  2. W32DLL

  3. SIGFILES

  4. TBLLIB

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

W32DLL is the correct location for DLL (Dynamic Link Library) files in a 32-bit Windows environment. DLL files contain executable code and resources that multiple programs can use simultaneously. W32BIN would typically contain executables while SIGFILES and TBLLIB serve other purposes.

Multiple choice technology
  1. True

  2. False

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

TTF (TrueType Font) is indeed the standard file extension for TrueType font files. This format was developed by Apple and Microsoft and is widely used for digital fonts. The statement is accurate.

Multiple choice technology web technology
  1. CSV and ASCII files can be uploaded

  2. The table used to store the flat file load parameters is RSADMINC

  3. The transaction for setting parameters for flat file upload is RSCUSTV7

  4. None of the above

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

The transaction RSCUSTV7 is used in SAP BW to set parameters for flat file uploads. The question asks which statement is NOT true. Options A and B are actually true statements (CSV/ASCII files can be uploaded, and RSADMINC stores parameters), so they are not the answer. Option D ('None of the above') would mean all A-C are true, but C is stated as the correct answer, implying C is the 'not true' statement. However, the question framing is confusing.

Multiple choice technology
  1. Database Configuration files

  2. Data Files(only serial files)

  3. Data Files(either serial files or multifiles)

  4. Data Manipulation Language files

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

The .dat file extension signifies Data Files that can be either serial files or multi-file formats. In data integration and ETL tools like Informatica, .dat files contain raw data that the platform processes. Option A is incorrect - database configurations use different extensions. Option B is incomplete - it's not limited to serial files only. Option D is incorrect - DML refers to SQL commands, not file extensions.

Multiple choice technology
  1. Returns the number of matching data records in a Lookup File.

  2. Returns successive data records from a Lookup File.

  3. Returns a data record from a partition of a Lookup File.

  4. Returns a data record from a Lookup File which matches with the values of expression argument.

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

A Lookup File function returns a data record that matches the values of the expression argument passed to it. It searches the lookup file based on the expression and returns matching records. Option A is incorrect - it doesn't just return a count. Option B is incorrect - it doesn't return successive records unless they match. Option C is incorrect - it doesn't return from a specific partition without matching criteria.

Multiple choice technology programming languages
  1. True

  2. False

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

PowerShell's redirection operators (like > and >>) can create new files but will not automatically generate non-existent parent directories. Attempting to write to a path without the directory already existing will fail and result in a directory not found exception.

Multiple choice technology
  1. Folders are structurally similar to a view.

  2. Floders also list documents, but do not have a selection criteria

  3. The user has to decide what are all the documents needs to be stored inside the folder.

  4. all of these

  5. None of these

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

Folders in Lotus Notes share the structural characteristics of views but operate differently. Unlike views that use selection criteria to automatically include documents, folders are manual containers where users explicitly decide which documents to store. The user must actively place documents into folders, making folders a user-controlled organizational tool rather than a system-defined filtered list.