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
-
Image file
-
System file
-
Programming/scripting related file
-
MS Fast Find file
A
Correct answer
Explanation
The .WMF (Windows Metafile) extension refers to an image file format developed by Microsoft. It's a vector graphics format that can store both vector and raster images. Windows Metafiles were commonly used for clip art and scalable graphics in earlier Windows versions.
-
Compressed Archive file
-
Windows Clipboard
-
Animation/movie file
-
MS Encarta document
B
Correct answer
Explanation
The .CLP extension refers to Windows Clipboard files. These files store copied data (text, images, etc.) that can be pasted later. CLP files were more common in older Windows versions for saving clipboard contents. It is not a compressed archive, animation file, or Encarta document.
-
Portable Format Reader
-
Portable File Reader
-
Production Development Facility
-
Program Development Facility
D
Correct answer
Explanation
In the mainframe context, PDF stands for Program Development Facility. It's an IBM mainframe tool used for program development, not to be confused with the more common Portable Document Format. The mainframe PDF is an interactive development environment for creating and maintaining programs on IBM mainframe systems.
-
New Technology File Software
-
New Technology File System
-
New Terminology File System
-
New Trial File System
B
Correct answer
Explanation
NTFS (New Technology File System) is a proprietary file system developed by Microsoft. It was introduced with Windows NT and has been the default file system for Windows consumer versions since Windows XP. NTFS supports file-level security, compression, encryption, and large file sizes.
-
i & ii
-
all of the above
-
i,ii,iii
-
ii
C
Correct answer
Explanation
SAP BW supports flat file imports for ASCII, CSV, and binary file formats through data transfer processes. XML files require different loading mechanisms (XML adapters) and are not treated as standard flat file imports.
-
TMAEAR
-
TMBEAR
-
TMBConfig.Properties
-
TMAConfig.Properties
C
Correct answer
Explanation
Configuration parameters in Java/enterprise applications are typically stored in .properties files. The naming convention TMBConfig.Properties follows the standard pattern where the filename clearly indicates its purpose as a configuration file for TMB-related settings, making it the correct choice.
-
File sets are partitioned.
-
File sets are unpartitioned.
-
File sets are stored as a single file.
-
File sets are readable by external applications.
-
(A) Input
-
(B) I-O
-
(C) Output
-
(D) A or B or C
B
Correct answer
Explanation
To use the REWRITE statement in COBOL to update an existing record in a file, the file must be opened in I-O (Input-Output) mode. Opening in INPUT mode only allows reading, while OUTPUT mode only allows writing new records, making I-O the only valid mode.
A
Correct answer
Explanation
A COBOL program can use files that are defined and allocated in JCL without re-declaring them in the COBOL program. The file definition in the COBOL SELECT/FD statements describes the file structure, but the actual allocation can be handled entirely through JCL DD statements. This is standard mainframe practice where JCL manages external resources.
-
background colors
-
sounds
-
color charts
-
large pictures
B
Correct answer
Explanation
WAV (Waveform Audio File Format) stores audio data, while MIDI (Musical Instrument Digital Interface) stores musical instrument information such as notes and timing. Both are file extensions associated with sound and audio, not visual elements like colors or pictures.
A
Correct answer
Explanation
Although standard Flex applications running in the Flash Player browser sandbox cannot directly access the local file system due to security restrictions, Flex applications developed for Adobe AIR (Adobe Integrated Runtime) have full local filesystem access using classes like File and FileStream.
-
src=img
-
src=image
-
img=file
-
img src=file
D
Correct answer
Explanation
To insert an inline image in HTML, the general syntax is:
<img src="image_file_path" alt="alternate_text">
Where:
img is the HTML tag used to define an image
src is an attribute used to specify the path to the image file
image_file_path is the relative or absolute URL to the image file
alt is an attribute used to specify alternate text for the image, which is displayed if the image cannot be loaded or if the user is using a screen reader
Therefore, the correct answer is:
The Answer is: D. img src=file
-
a. copy privilege enables the user to copy folders within the same repository alone.
-
b. Copy privilege enables the user to read and write on folders
-
c. Manage versions privilege enable the user to read and write on folders
-
d.Mange versions privilege enable the user to read on folders
C
Correct answer
Explanation
Manage Versions privilege in Informatica allows users to both read from and write to folders, making it a comprehensive access right. Copy privilege is specifically for duplicating folders within the same repository, not for read/write operations. Option A incorrectly limits copy to same repository only, option B incorrectly associates copy with read/write, and option D incorrectly states manage versions is read-only.
-
compresses a file and returns the original file with .z extension
-
to backup the file systems
-
creates an archive of files into a single file
-
will initiate an interactive conversation with user
C
Correct answer
Explanation
The tar command creates an archive file by combining multiple files and directories into a single archive file. While tar itself doesn't compress (it just archives), it's commonly used in conjunction with compression tools like gzip to create compressed backups (.tar.gz files).
-
Root folder
-
Database
-
Flat File
-
Both B & C
B
Correct answer
Explanation
HP/ALM Quality Center projects store their data and entity information in a dedicated relational database (such as Oracle or MS SQL Server) alongside a repository for physical files. Flat files or root folders alone do not support the structured project information.