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
  1. Ventelated Memory

  2. Virtual Minute

  3. Vascular Memory

  4. Virtual Memory

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

VM stands for Virtual Memory, a memory management technique that creates an illusion of having more main memory than physically available. It allows programs to use more memory than what's actually installed by using disk space as an extension of RAM. This is essential for running large applications or multiple programs simultaneously.

Multiple choice technology
  1. Code segment (CS)

  2. Data segment (DS)

  3. Stack segment (SS)

  4. Address segment (AS)

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The 8086/8088 processors have four segment registers: Code Segment (CS), Data Segment (DS), Stack Segment (SS), and Extra Segment (ES). There is no 'Address Segment' (AS) register - this is a fabricated option. Segment registers are used to address different memory regions in the segmented memory architecture of these processors.

Multiple choice technology
  1. disk drive &RAM

  2. disk drive & ROM

  3. both

  4. none

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Direct Memory Access (DMA) is designed to transfer large blocks of data directly between peripherals and memory without CPU intervention. It is most efficient for high-speed devices like disk drives transferring data to RAM. ROM is read-only memory used for storing firmware, so data transfer between disk drive and ROM is not a typical DMA use case.

Multiple choice technology
  1. Harddisks

  2. Diskettes

  3. CD-ROM

  4. Magnetic Tapes

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Floppy diskettes (typically 1.44 MB) store significantly less data than hard disks (gigabytes to terabytes), CD-ROMs (700 MB), or magnetic tapes (up to terabytes). Diskettes represent the smallest storage capacity among common computer storage media.

Multiple choice technology programming languages
  1. Local machine's digital signature certificate store

  2. HKEY_LOCAL_MACHINE registry hive

  3. HKEY_CURRENT_USER registry hive

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PowerShell uses PSDrives to expose data stores similar to file system drives. Using specialized providers, it mounts registry hives (like HKLM: and HKCU:) and the digital signature certificate store (Cert:) as virtual drives, making 'All of the above' correct.

Multiple choice technology
  1. Magnetic

  2. Tubular Holographic

  3. Optical

  4. Electrical

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The 5 PEN PC uses tubular holographic storage technology, which is a key differentiating feature of this concept. Unlike traditional magnetic, optical, or electrical storage, holographic storage uses light interference patterns to store data in three dimensions, enabling much higher storage density in a compact form factor suitable for a pen-style device.

Multiple choice technology
  1. Magnetic

  2. Tubular Holographic

  3. Optical

  4. Electrical

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The 5 PEN PC uses tubular holographic storage technology, which is a key differentiating feature of this concept. Unlike traditional magnetic, optical, or electrical storage, holographic storage uses light interference patterns to store data in three dimensions, enabling much higher storage density in a compact form factor suitable for a pen-style device.

Multiple choice technology
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Netezzza uses a zone map architecture and append-only storage model. Updated records are marked as deleted and new versions are appended rather than being modified in-place. This design supports features like time travel queries and efficient rollback capability.

Multiple choice technology enterprise content management
  1. Copied

  2. Versioned

  3. Deleted

  4. none

Reveal answer Fill a bubble to check yourself
A,B Correct answer
Explanation

Retention policies can act on documents in multiple ways. They may cause a copy of a document to be retained for compliance, and they can also trigger versioning to preserve historical states. Deletion is not a typical retention action, and ‘none’ would defeat the policy’s purpose, so the two marked options are correct.

Multiple choice technology
  1. Same

  2. Entire

  3. Hash By Key

  4. Round robin

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Round-Robin is often considered the most efficient partitioning method because it requires no computation - rows are simply distributed in rotation to each partition. Same requires no movement but keeps existing distribution, Entire is expensive (broadcasts all data), Hash requires hash computation. Round-Robin's simplicity makes it fastest for even distribution.