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
-
it has a twist in it
-
it has a red line along one edge
-
it's wider than all the other ribbon cables
-
it's white
A
Correct answer
Explanation
Floppy drive ribbon cables have a distinctive twist near the connector end - typically 7-10 wires are twisted between the drive A and drive B connectors. This twist is unique to floppy cables. Option B (red line) is the pin-1 indicator found on all ribbon cables, not specific to floppies. Floppy cables are actually narrower (34 pins) than IDE cables (40 pins), and color varies.
-
recovers lost clusters on the hard drive
-
performs low-level formatting of the hard drive
-
creates partitions on the hard drive
-
fixes bad sectors on the hard drive
C
Correct answer
Explanation
FDISK (Fixed Disk) is a DOS and Windows utility for creating and managing disk partitions - dividing a hard drive into logical sections that can be formatted separately. Option A describes CHKDSK/SCANDISK, option B describes low-level formatting tools, and option D describes bad sector marking performed during format or scandisk operations.
-
a system for balancing the voltage coming out of the power supply
-
a byte stored in the FAT to indicated remaining slots
-
the last setting for controlling hard drive configuration of IDE drives in the CMOS
-
an extra bit stored with data in RAM that is used to check for errors when the data is read back
D
Correct answer
Explanation
Parity is an error-detection mechanism where an extra bit is added to each byte of data. The parity bit is set so that the total number of 1-bits is either always even (even parity) or always odd (odd parity). When data is read back, the parity is recalculated and compared to detect single-bit errors. Options A, B, and C describe voltage regulation, FAT entries, and CMOS settings respectively - unrelated to parity.
D
Correct answer
Explanation
The kernel is the core part of an operating system that remains in memory (RAM) at all times, managing CPU, memory, and hardware resources. The registry is a Windows configuration database, API is an interface for applications, and CMOS is BIOS configuration memory on the motherboard. The kernel is always memory-resident because it must handle every system call and hardware interaction. Terms like 'resident' mean staying in memory continuously.
-
RAM
-
ROM
-
the CPU
-
the hard drive
B
Correct answer
Explanation
BIOS firmware is stored in ROM (Read-Only Memory) chips on the motherboard, specifically in EEPROM or flash memory. ROM is non-volatile and retains its contents without power, unlike RAM which is volatile. The CPU executes BIOS code but doesn't store it. The hard drive stores the OS and applications, not the BIOS itself. ROM ensures BIOS is available immediately upon power-on for the boot process.
D
Correct answer
Explanation
The kernel is the core component of an operating system that resides in memory at all times. It manages CPU, memory, processes, and essential hardware operations. The registry (A) is a Windows database for configuration settings. API (B) refers to application programming interfaces for software communication. CMOS (C) is a memory chip that stores BIOS settings - not the operating system itself.
-
RAM
-
ROM
-
the CPU
-
the hard drive
B
Correct answer
Explanation
BIOS (Basic Input/Output System) firmware is stored in ROM (Read-Only Memory) chips on the motherboard. ROM is non-volatile memory that retains its contents without power and cannot be easily modified. RAM (A) is volatile memory cleared when power is lost. The CPU (C) is the processor that executes instructions. The hard drive (D) stores software and data, not the BIOS firmware itself.
-
DDR SDRAM
-
RAMBUS
-
SIMM
-
DIMM
A
Correct answer
Explanation
DDR SDRAM is commonly used in laptop video cards for its compact size and power efficiency. RAMBUS, SIMM, and DIMM are older or desktop-oriented memory form factors.
-
1.8 inch (4.5cm)
-
2.5 inch (6.25cm)
-
3.5 inch (8,.75cm)
-
5.25 inch5 (13.12cm)
B
Correct answer
Explanation
2.5 inch (6.25cm) is the standard hard drive size for laptops. 1.8 inch is rare (ultra-portables), 3.5 inch is for desktops, and 5.25 inch is obsolete (legacy optical drives).
B
Correct answer
Explanation
USB (Universal Serial Bus) was designed specifically with plug-and-play functionality, allowing peripherals to be hot-swapped and automatically detected by the operating system without manual configuration or restart. EIDE, SATA, and RAID are not plug-and-play technologies.
-
Suspend
-
Standby
-
Log off
-
Hibernate.
D
Correct answer
Explanation
Hibernate mode saves the complete system state (RAM contents) to the hard drive before powering down completely. Unlike Standby or Suspend modes which keep data in RAM and require continuous power, Hibernate allows you to fully power off and later resume exactly where you left off.
-
FDISK
-
DISKPART
-
FORMAT
-
DEBUG
A
Correct answer
Explanation
FDISK is the DOS utility used for creating, deleting, and managing disk partitions. FORMAT prepares existing partitions for use but cannot create or delete them, DISKPART is a more modern Windows command-line tool, and DEBUG is a low-level assembly debugger. FDISK is the classic partition management tool.
-
Personal Storage Tab
-
Personal Storage Task
-
Personal Storage Table
-
Personal Store Tab
C
Correct answer
Explanation
PST stands for Personal Storage Table, which is the file format used by Microsoft Outlook to store email messages, calendar items, and other data locally on your computer. It's the standard file extension for Outlook data files (.pst).
-
serialization
-
garbage collection
-
assemblies
-
overriding
B
Correct answer
Explanation
Garbage collection is the automatic memory management technique in .NET framework that automatically reclaims memory occupied by objects that are no longer in use. Serialization is about object persistence, assemblies are deployment units, and overriding is a polymorphism concept - none relate to memory management.
-
Add a faster processor
-
Add more RAM
-
Defrag the hard drive
-
Convert your disk to NTFS
B
Correct answer
Explanation
Adding more RAM has traditionally been the most effective way to improve Windows performance. While CPU upgrades help, Windows is memory-intensive and RAM directly reduces disk paging. Defragmenting and NTFS conversion are maintenance tasks, not performance upgrades. This holds true for Vista as well.