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
-
Progran Global Area
-
System Global Area
-
Shared Pool Area
-
Database Buffer Cache
A
Correct answer
Explanation
The Program Global Area (PGA) is a memory region that contains data and control information for a single server process. It is non-shared memory specific to each process, unlike the SGA which is shared across all processes. The PGA contains session-specific variables, sort areas, and other process-private data.
-
vmstats
-
sar
-
vmstat
-
prstat
C
Correct answer
Explanation
vmstat (virtual memory statistics) is a standard Linux command that reports memory usage, paging, swaps, and CPU activity. vmstats is not a valid command, sar reports system activity data, and prstat is a Solaris-specific command.
-
Internal storage or real storage or central storage or processor storage
-
External storage or paging storage or auxiliary storage
-
Virtual storage
-
All
A,B
Correct answer
Explanation
z/OS storage architecture distinguishes between internal (central/real/processor) storage directly accessed by the CPU, and external (paging/auxiliary) storage used as overflow. Virtual storage is an address space concept, not a physical storage type.
-
Central storage is accessed asynchronously with the processor and Auxiliary storage is accessed synchronously
-
Central storage is accessed synchronously with the processor and Auxiliary storage is accessed asynchronously
-
Both Central storage and Auxiliary storage is accessed asynchronously with the processor
-
Both Central storage and Auxiliary storage is accessed synchronously with the processor
B
Correct answer
Explanation
Central (real) storage is directly connected to the processor and accessed synchronously at CPU speeds. Auxiliary storage acts as secondary storage and is accessed asynchronously because it requires I/O operations that take much longer than CPU cycles.
-
Central storage
-
Auxiliary storage
-
Both 1 & 2
-
None
C
Correct answer
Explanation
z/OS virtual storage is backed by both central storage (RAM) and auxiliary storage (paging space on DASD). The system pages data in and out of central storage to auxiliary storage as needed, utilizing both resources to maintain the virtual memory space.
-
Data Facility Storage Management Subsystem (DFSMS)
-
Data Storage Facility Management Subsystem (DSFMS)
-
Data Storage Facility Management System (DSFMS
-
Data Facility Storage Management System (DFSMS)
A
Correct answer
Explanation
DFSMS (Data Facility Storage Management Subsystem) is z/OS's primary storage management tool, providing automated policy-based management of datasets and storage. The other options have incorrect acronym expansions or names.
-
parked and boxed when removed from the computer
-
protected from magnetic devices
-
defragmented and backed up at regular intervals
-
formatted before removing from the computer
D
Correct answer
Explanation
Formatting a hard drive erases all data, so you should NEVER format it before removing from a computer unless data destruction is intended. Proper procedure includes parking the heads, protecting from magnets, and maintaining regular backups - formatting is an irreversible destructive action.
-
A magnetic field from a large speaker
-
X-ray from a nearby monitor
-
Solar Winds
-
RFI from a nearby TV
A
Correct answer
Explanation
Hard disk drives use magnetic platters to store data. A strong magnetic field from a large speaker can alter or corrupt this magnetic alignment, leading to data loss. Monitors, solar winds, and TVs do not produce magnetic fields strong enough to interfere with hard drives under normal conditions.
-
When not being used, a 5-1/4" disk should be kept in its protective sleeve
-
A hard drive should be protected from high magnetic fields
-
A surge suppresser can help to protect a computer installation from high voltage spikes
-
When cleaning PC boards, blowing dust away is preferred over vacuuming
-
All of the above
E
Correct answer
Explanation
Statement A is true (floppy disks require sleeves for protection). B is true (hard drives are magnetically sensitive storage devices). C is true (surge suppressors protect against voltage spikes). D is true (vacuuming can generate static; compressed air is safer for PC boards). Therefore, all statements are correct.
-
Identify the recording mode, by which you can record the non-standard object in
-
Analog recording
-
Low level recording
-
None
-
Data Class
-
Storage Class
-
Storage Group
-
Management Class
C
Correct answer
Explanation
Storage Group is the SMS class used to specify volume names and free space thresholds for dataset allocation. It defines which volumes or pools of volumes can be used for SMS-managed datasets and controls how much free space must be available. Storage Group does not handle performance (Storage Class), multi-volume properties (Data Class), or backup/migration (Management Class).
-
Virtual Storage Access Method
-
Virtual Shared Access Method
-
Virtual Shared Access Memory
-
Virtual Storage Access Memory
A
Correct answer
Explanation
VSAM stands for Virtual Storage Access Method, an IBM data management system for mainframe computers. It provides efficient access to data by organizing it in various file types (KSDS, ESDS, RRDS) and is commonly used for high-performance transaction processing systems.
A
Correct answer
Explanation
REORG (Reorganization) is a VSAM utility that reorganizes datasets to reclaim deleted space and improve access performance. It physically reorders records and rebuilds indexes, which reduces I/O operations for sequential and random access. This is a standard maintenance procedure for VSAM datasets that have experienced many insertions and deletions.
A
Correct answer
Explanation
VSAM stands for Virtual Storage Access Method. It is an IBM data management system that implements datasets like KSDS, ESDS, RRDS, and LDS. VSAM is used for high-performance data access on z/OS systems.
A
Correct answer
Explanation
VVDS (VSAM Volume Data Set) is a VSAM catalog structure that contains metadata about all VSAM datasets on a specific volume, including space allocation and dataset characteristics.