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
-
Ventelated Memory
-
Virtual Minute
-
Vascular Memory
-
Virtual Memory
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.
-
Code segment (CS)
-
Data segment (DS)
-
Stack segment (SS)
-
Address segment (AS)
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.
-
disk drive &RAM
-
disk drive & ROM
-
both
-
none
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.
-
Harddisks
-
Diskettes
-
CD-ROM
-
Magnetic Tapes
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.
-
Local machine's digital signature certificate store
-
HKEY_LOCAL_MACHINE registry hive
-
HKEY_CURRENT_USER registry hive
-
All of the above
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.
-
Magnetic
-
Tubular Holographic
-
Optical
-
Electrical
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.
-
Magnetic
-
Tubular Holographic
-
Optical
-
Electrical
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.
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.
A
Correct answer
Explanation
Flash memory is a type of EEPROM (Electrically-Erasable Programmable Read-Only Memory) that allows electrical erasing and reprogramming of data. It improves on traditional EEPROM by erasing data in blocks rather than byte-by-byte.
A
Correct answer
Explanation
Flash memory is a type of EEPROM (Electrically-Erasable Programmable Read-Only Memory) that allows electrical erasing and reprogramming of data. It improves on traditional EEPROM by erasing data in blocks rather than byte-by-byte.
-
Video Home System
-
Very high speed
-
Video horizontal standard
-
Voltage house standard
A
Correct answer
Explanation
VHS stands for Video Home System. It was the dominant home video cassette format from the 1970s through 2000s, developed by JVC to compete with Sony's Betamax format.
B
Correct answer
Explanation
A 32-bit operating system can theoretically address up to 4 GB of RAM, not 8 GB. This is due to the 32-bit address space limitation (2^32 = 4,294,967,296 bytes ≈ 4 GB). In practice, 32-bit Windows typically shows around 3.2-3.5 GB of usable RAM due to memory-mapped hardware reservations.
A
Correct answer
Explanation
Unix follows 'everything is a file' philosophy, including RAM. Memory devices like /dev/mem and /dev/kmem allow treating RAM as file-like objects for reading/writing.
-
Copied
-
Versioned
-
Deleted
-
none
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.
-
Same
-
Entire
-
Hash By Key
-
Round robin
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.