Computer Knowledge
Computer Memory and Storage
2,477 Questions
Computer memory and storage questions test foundational knowledge of hardware, cache mapping, and data transfer mechanisms. Key areas include Direct Memory Access, analog recording, and RAID levels. This section is essential for candidates preparing for banking and government computer proficiency tests.
Cache memory mappingDirect memory accessRAID storage levelsHard disk technologyOptical media storageMemory addresses
Computer Memory and Storage Questions
-
A path between Server and Storage via Switch
-
A group of storage elements in a network
-
A partition in Storage
-
None
A
Correct answer
Explanation
In Fibre Channel SANs, a Zone is a logical path configuration that controls which servers can communicate with which storage devices through the switch. Zoning creates isolated paths for security and traffic management. It's not a storage partition or grouping of elements - it's about access control through the switch fabric.
C
Correct answer
Explanation
Despite the growth of SAN and NAS, DAS still accounts for the largest percentage of storage worldwide because it's the default storage inside every computer, laptop, and many servers. Internal hard drives and SSDs in consumer devices are all DAS. SAN and NAS are enterprise technologies, but DAS is ubiquitous across all markets.
B
Correct answer
Explanation
SAN (Storage Area Network) uses block-level I/O for data movement between storage and servers, treating storage as if it were locally attached to the server. NAS provides file-level access where the storage system manages the file system, not block-level I/O. DAS does use block I/O but SAN is the more precise answer for networked block storage.
D
Correct answer
Explanation
In clustered server environments where multiple servers need shared access to the same storage, SAN is the preferred storage type. SAN provides block-level shared storage that all cluster nodes can access concurrently. NAS can be used but DAS (Direct Attached Storage) doesn't support shared access required for clustering, and JBOD is just a disk enclosure without networking.
D
Correct answer
Explanation
In SAN architecture, servers and storage are decoupled - servers connect to the SAN network and storage connects to the same network independently. You can expand storage without affecting servers, add servers without changing storage, and scale both independently. With DAS and JBOD, expansion directly impacts the server. NAS has some independence but SAN provides complete decoupling.
-
NFS file system with minimum access
-
NFS access for root
-
NFS file system without access
-
No wait time for NFS mount.
D
Correct answer
Explanation
In NFS configurations, mounting with the soft option instructs the client to report an I/O error to the calling process after a timeout threshold is exceeded, rather than waiting or retrying indefinitely. Distractors describing permissions or access limits misidentify NFS mount behaviors.
-
vIRTUAL STORAGE CROSS REFERENCE
-
VIRTUAL STORAGE COMMON REFERENCE
-
VIRTUAL STORAGE CROSS RELIEF
-
VIRTUAL STORAGE CONSTRAINT RELIEF
D
Correct answer
Explanation
VSCR is an IBM mainframe technology meaning Virtual Storage Constraint Relief, a feature in z/OS that helps manage virtual storage constraints by extending address space capabilities.
-
$strComputer = "Computer name" $colRAM = Get-WmiObject -Class "win32_PhysicalMemory" -namespace "root\CIMV2"-computerName $strComputer Foreach ($objRAM In $colRAM) { "Memory Installed: " + $objRAM.DeviceLocator &quo
-
$strComputer = "Computer name" $colRAM = Get-WmiObject -Class "win32_PhysicalMemoryArray" -namespace "root\CIMV2"-computerName $strComputer Foreach ($objRAM In $colRAM) { "Memory Installed: " + $objRAM.DeviceLocator
-
$strComputer = "Computer name" $colRAM = Get-WmiObject -Class "win32_PhysicalMemorySize" -namespace "root\CIMV2"-computerName $strComputer Foreach ($objRAM In $colRAM) { "Memory Installed: " + $objRAM.DeviceLocator
-
None of the above
A
Correct answer
Explanation
The Win32_PhysicalMemory WMI class provides information about each physical memory module installed in the system. The DeviceLocator property identifies the memory slot location, and the Capacity property indicates the RAM size. Option B uses Win32_PhysicalMemoryArray which describes the memory array hardware rather than individual modules, while Option C references a non-existent WMI class.
-
Used to store Business Objects
-
Used to store Admin Objects
-
Used to store checkedin files
-
All the above.
C
Correct answer
Explanation
Stores in Matrix database are specifically designed to store checked-in files and version-controlled content. They are not used for business objects (A) or admin objects (B), which are managed by other database components. Option D is incorrect because only C accurately describes the purpose of stores.
-
Remote
-
External
-
Captured
-
Foreign
-
Tracked
A,D
Correct answer
Explanation
Remote vaults (A) connect to external systems or repositories, while foreign vaults (D) integrate with non-Matrix databases. Captured (C) and tracked (E) are not vault types, and external (B) is not the standard terminology. These vault types enable integration with external data sources.
B
Correct answer
Explanation
Tracked stores in ENOVIA Matrix are specialized storage structures with versioning, metadata, and access control managed by the Matrix kernel - they are NOT simple directories. While stored on the filesystem, tracked stores have internal Matrix management including business object references, checkout states, and file generations. Directories lack these Matrix-specific management capabilities like version tracking and policy enforcement.
-
Used to store Business Objects
-
Used to store Admin Objects
-
Used to store checkedin files
-
All the above.
C
Correct answer
Explanation
In Matrix architecture, Stores are specifically designed to store checked-in files and their versions as part of the version control system. Business Objects use Vaults for storage, and Admin Objects have their own management mechanisms. 'All the above' is incorrect because Stores have a specialized purpose focused on file versioning, not general object storage.
-
Remote
-
External
-
Captured
-
Foreign
-
Tracked
A,D
Correct answer
Explanation
In Matrix database Vault types, 'Remote' and 'Foreign' are recognized classifications for Vaults based on their location and ownership characteristics. Remote Vaults typically refer to vaults accessed over a network connection, while Foreign Vaults represent vaults owned or managed by external entities. External, Captured, and Tracked are not standard Vault type classifications in the Matrix database system.
-
D2D Disk-to-disk
-
D2T Disk-to-tape
-
D2D2T Disk-to-disk-to-tape
-
T2T Tape-to-tape
A,B,C
Correct answer
Explanation
DPM supports three storage types: direct disk-to-disk (D2D), disk-to-tape (D2T), and hybrid disk-to-disk-to-tape (D2D2T). Tape-to-tape is not supported because DPM always writes to disk first.
-
Pass-through disks
-
Fixed virtual hard disks
-
Dynamic virtual hard disks
-
All
A
Correct answer
Explanation
Pass-through disks provide highest performance by giving the VM direct access to physical storage without the VHD format overhead. Fixed VHDs add a virtualization layer, while dynamic VHDs can suffer from fragmentation.