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
-
"libraryname.a" and "libraryname.a.version"
-
"libraryname.a" and "libraryname.so.version"
-
"libraryname" and "libraryname.so.version"
-
There exist only one file for one shared library.
B
Correct answer
Explanation
In Linux development environments, a library package often includes both static (.a) and shared (.so.version) versions. The static library is used for static linking, while the versioned shared library is used for dynamic linking at runtime.
-
Common Intelligent File System
-
Common Internet File Server
-
Common Internet File System
-
None
C
Correct answer
Explanation
CIFS stands for Common Internet File System, a network file sharing protocol developed by Microsoft. It allows applications to access and share files over a network, essentially extending the local file system access to remote servers. Option A (Intelligent) and B (Server) are incorrect as they don't represent the actual expansion.
C
Correct answer
Explanation
BIAR (Business Intelligence Archive Resource) is the file extension used for BO backup and archive files. This format contains exported universe, report, and other metadata objects. The other options are BO file types but not the backup extension.
-
delete
-
unlink
-
rename
-
deletefile
B
Correct answer
Explanation
unlink is the Perl function for deleting files - it removes the link between a filename and the file's data. "delete" (option A) is for removing hash elements, rename (option C) moves files, and deletefile doesn't exist as a built-in.
-
using .doc file
-
using .xml file
-
using .csv file
-
using .xls file
C
Correct answer
Explanation
Managed Metadata Services in SharePoint supports bulk term import using CSV files. The CSV format allows structured data import with term names, descriptions, parent-child relationships, and other metadata. This is the standard format for term set bulk operations in SharePoint.
-
Change the inode number of the file
-
Change the inodes count.
-
Change the content of the file.
-
change the file permission
-
Character delimited
-
fixed length
-
single record
-
All of the Above
D
Correct answer
Explanation
OWB's flat file connectors support multiple common file formats used in data warehousing. Character-delimited files use separators like commas or tabs; fixed-length files have defined column widths; and single-record files handle complex record structures. This flexibility allows integration with diverse legacy and external systems.
-
Transaction files transferred between the Server and Mobile Client
-
Temporary files that are automatically purged upon application exit
-
Directory files used by Siebel to organize physical file directories
-
Log files used for troubleshooting EIM process errors
A
Correct answer
Explanation
.dx files are Siebel data exchange files used for transferring transaction data between Server and Mobile Client during synchronization. They are not temporary files, directory organizers, or EIM log files - each serves a different purpose.
-
EXTENDED CROSS REFERENCE
-
EXTERNAL CROSS REFERENCE
-
STORAGE CROSS REFERENCE
-
STORAGE COMMON REFERENCE
C
Correct answer
Explanation
XREF stands for Cross Reference, a tool/feature that shows relationships between program components (which programs use which files, data structures, etc.). The options appear to be testing IBM mainframe terminology where 'STORAGE CROSS REFERENCE' is likely the intended expansion.
-
File owner and File type
-
File access permission and File access tie
-
Number of Links, File size and Location of the file data
-
All of the above
D
Correct answer
Explanation
An inode (index node) in Unix-like file systems contains comprehensive metadata about a file including the file owner's user ID and group ID, file type (regular file, directory, device file, etc.), access permissions (read/write/execute bits), number of hard links pointing to the inode, file size in bytes, and direct/indirect block pointers locating the actual file data on disk.
B
Correct answer
Explanation
Sealed management packs in SCOM 2007 use the .MP file extension as they are compiled and digitally signed. Unsealed management packs exist as editable XML files before being sealed into the .MP format.
-
%SystemDrive%\Program Files\Common Files\web server extensions\12
-
%SystemDrive%\Program Files\Common Files\Microsoft Shared\web server extensions\10
-
%SystemDrive%\Program Files\Common Files\Microsoft Shared\web server extensions\12
-
%SystemDrive%\Program Files\Common Files\web server extensions\10
C
Correct answer
Explanation
In SharePoint 2007, the hive folder is at %SystemDrive%\Program Files\Common Files\Microsoft Shared\web server extensions\12. This directory contains SharePoint installation files and templates. The '12' refers to SharePoint version 2007 (WSS 3.0/MOSS 2007).
-
.ddf file is a data directive file
-
.ddf file is a data directory file
-
This file is passed as a parameter to makecab utility to create SharePoint Solution
-
.ddf file may not be required to create a wsp
A,C
Correct answer
Explanation
.DDF (Data Directive File) files contain instructions for the makecab utility to package SharePoint Solution files (.wsp). They define the source files and cabinet structure needed to create deployment packages. Option B incorrectly identifies the acronym, and Option D is incorrect because .ddf files are typically required for automated .wsp creation.
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI\bin
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\bin
-
drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ADMISAPI
B
Correct answer
Explanation
The Microsoft.SharePoint.dll is located in the ISAPI folder under the 12 hive: 'Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI'. This is the correct location to add references when developing SharePoint solutions.
-
In Content DB
-
In File System
-
Either in File System or Content DB
-
In DB System
A
Correct answer
Explanation
When files are edited using SharePoint Designer, they become customized files stored in the Content Database rather than on the file system. This customization model allows SharePoint to maintain version history and track unghosted (customized) pages separately from the site definition files on disk.