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

Multiple choice technology programming languages
  1. Progran Global Area

  2. System Global Area

  3. Shared Pool Area

  4. Database Buffer Cache

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Internal storage or real storage or central storage or processor storage

  2. External storage or paging storage or auxiliary storage

  3. Virtual storage

  4. All

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Central storage is accessed asynchronously with the processor and Auxiliary storage is accessed synchronously

  2. Central storage is accessed synchronously with the processor and Auxiliary storage is accessed asynchronously

  3. Both Central storage and Auxiliary storage is accessed asynchronously with the processor

  4. Both Central storage and Auxiliary storage is accessed synchronously with the processor

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Central storage

  2. Auxiliary storage

  3. Both 1 & 2

  4. None

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Data Facility Storage Management Subsystem (DFSMS)

  2. Data Storage Facility Management Subsystem (DSFMS)

  3. Data Storage Facility Management System (DSFMS

  4. Data Facility Storage Management System (DFSMS)

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology usability
  1. parked and boxed when removed from the computer

  2. protected from magnetic devices

  3. defragmented and backed up at regular intervals

  4. formatted before removing from the computer

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology usability
  1. A magnetic field from a large speaker

  2. X-ray from a nearby monitor

  3. Solar Winds

  4. RFI from a nearby TV

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology usability
  1. When not being used, a 5-1/4" disk should be kept in its protective sleeve

  2. A hard drive should be protected from high magnetic fields

  3. A surge suppresser can help to protect a computer installation from high voltage spikes

  4. When cleaning PC boards, blowing dust away is preferred over vacuuming

  5. All of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. Data Class

  2. Storage Class

  3. Storage Group

  4. Management Class

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology mainframe
  1. Virtual Storage Access Method

  2. Virtual Shared Access Method

  3. Virtual Shared Access Memory

  4. Virtual Storage Access Memory

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology mainframe
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.