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
-
GFS
-
Monthly
-
Tower of Hanoi
-
Weekly
B
Correct answer
Explanation
This backup scheme uses 5 daily tapes (Monday-Friday) and 4 weekly tapes, which is a monthly rotation scheme. Grandfather-Father-Son uses daily, weekly, and monthly tapes. Tower of Hanoi uses a different mathematical pattern.
-
Copies all files that are selected for backup
-
Copies every file on the system that was modified or added since the previous backup, keeping the archive bit switch on
-
Copies every file on the system that has archive bit switched on, and switch off the archive bit after the backup is complete
-
Copies all the files that have been generated since the last backup
C
Correct answer
Explanation
Incremental backup copies only files with their archive bit set (indicating they've changed since the last backup), then resets the bit to mark them as backed up. This is efficient because only changed files are copied. Differential backup keeps the archive bit on, copying all changes since the last FULL backup.
-
Cooling fan
-
Hard drive
-
Network interface card
-
Processor
B
Correct answer
Explanation
In RAID systems, hard drives are redundant by design - multiple drives store the same data or parity information so that if one drive fails, data isn't lost and the system continues operating. Fans, NICs, and processors can be redundant in other contexts but RAID specifically protects against drive failure.
-
RAID 0
-
RAID 1
-
RAID 3
-
RAID 5
D
Correct answer
Explanation
RAID 5 provides fault tolerance through distributed parity and excellent read performance through striping across multiple disks, making it ideal for read-intensive applications. RAID 0 has no fault tolerance. RAID 1 mirrors but has lower performance. RAID 3 has dedicated parity creating a bottleneck. RAID 5 balances performance, cost, and redundancy.
-
I/O bottleneck
-
Memory bottleneck
-
Disk bottleneck
-
Network bottleneck
C
Correct answer
Explanation
A rise in percentage of disk time indicates a disk bottleneck (I/O bottleneck). This metric shows how much time the disk is busy handling read/write requests. High disk time percentage means the disk subsystem is saturated and cannot keep up with I/O demands, causing processes to wait.
-
Memory
-
CPU
-
Disk
-
Network bandwidth
A
Correct answer
Explanation
High paging rates (pages per second) indicate the system is running low on physical memory and excessively swapping data to disk. Adding RAM (option A) directly addresses this by providing more space for active processes, reducing the need to page to disk. CPU, disk capacity, and network bandwidth do not directly cause paging - the issue is specifically memory pressure forcing the OS to constantly move pages between RAM and disk.
-
RAID 0
-
RAID 1
-
RAID 10
-
RAID 5
B
Correct answer
Explanation
RAID 0 improves performance through striping (distributing data across disks). RAID 10 combines striping with mirroring for both performance and redundancy. RAID 5 uses striping with distributed parity for improved read performance. RAID 1 (option B) is pure mirroring - it writes the same data to two disks, providing redundancy but no performance benefit (in fact, it has a slight write overhead). RAID 1 is the correct answer as the one that doesn't contribute to performance improvement.
-
Cache frequently accessed data in system memory
-
Dedicate system memory to specific tasks
-
Add additional memory
-
Create additional instances for parallel processing and load balancing
B
Correct answer
Explanation
Caching data, adding memory, and creating instances all directly improve memory performance. Dedication of memory to specific tasks (B) is an allocation strategy, not a remediation technique - it doesn't solve the underlying memory problem, just partitions existing limited resources differently.
-
6 CPU and 500GB.
-
8 CPU and 255GB
-
4 CPU and 250GB.
-
8 CPU and 500GB.
B
Correct answer
Explanation
The maximum virtual machine configuration has evolved significantly since these numbers were current. While 8 vCPUs and 255GB RAM were limits in older versions, modern vSphere supports much higher configurations (up to 128 vCPUs and multiple TB of RAM per VM). This question appears to reference historical limits that are now outdated.
-
Fixed -Normal disk, Dynamic -Compressed disks.
-
Fixed -swap disk , dynamic - cluster disks.
-
All the above.
-
Fixed -Actual allocated, Dynamic - disk is increased depends upon the data size.
D
Correct answer
Explanation
Fixed (thick provisioned) disks allocate the full specified size at creation time - the space is reserved and immediately available. Dynamic (thin provisioned) disks start small and grow on-demand as data is written, using only the space actually needed up to the maximum configured size. This trades allocation time for flexibility and storage efficiency.
-
Available Memory Bytes
-
Committed Memory Bytes
-
Memory Pages / seconds
-
% User Time
D
Correct answer
Explanation
The question asks which counter is NOT a memory-related performance counter. % User Time is a CPU performance counter that measures the percentage of time the processor spends in user mode, not memory utilization. Available Memory Bytes, Committed Memory Bytes, and Memory Pages/second are all genuine memory-related counters that track memory availability, allocation, and paging activity.
-
Disk sec / Transfer
-
Network Interface\ Bytes Total/sec
-
Server\ Bytes Received/sec
-
Packets Received Errors
A
Correct answer
Explanation
'Disk sec / Transfer' measures the average time in seconds for a disk transfer operation, which directly indicates disk performance bottlenecks. The other metrics monitor network interface traffic or packet errors, which are network-related rather than disk-related.
-
Files on /home are consuming 98% of the /home filesystem
-
File read/write activity on /home is consuming 98% of system I/O capacity.
-
Files on /home are consuming 98% of the physical disk
-
Inodes on /home are nearly exhausted.
A
Correct answer
Explanation
The df command reports filesystem disk space usage, and Use% 98% means that 98% of the /home filesystem's storage capacity is consumed by files. It does not report I/O activity (that would be iostat), physical disk usage across all filesystems, or inode exhaustion (which would be reported separately as IUse%). The Use% field specifically refers to the percentage of filesystem capacity used.
-
Floppy Disc
-
Magnetic Drum
-
Magnetic Tape
-
None of These
D
Correct answer
Explanation
Floppy disc, Magnetic Drum, and Magnetic Tape are all storage media/devices, not files. A file is a named collection of data stored on a medium. Since none of A, B, or C are files, D is the correct answer.
-
IDE
-
EIDE
-
SCSI
-
Optical Drives
C
Correct answer
Explanation
SCSI drives offer faster data transfer rates and better performance for large file operations like video playback compared to IDE/EIDE drives. SCSI's intelligent controller architecture reduces CPU overhead and supports higher throughput and concurrent operations. Optical drives have much slower access times than magnetic storage.